diff options
Diffstat (limited to 'app/Template/project/layout.php')
-rw-r--r-- | app/Template/project/layout.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/Template/project/layout.php b/app/Template/project/layout.php new file mode 100644 index 00000000..27a93021 --- /dev/null +++ b/app/Template/project/layout.php @@ -0,0 +1,16 @@ +<section id="main"> + <div class="page-header"> + <ul> + <li><i class="fa fa-table fa-fw"></i><?= Helper\a(t('Back to the board'), 'board', 'show', array('project_id' => $project['id'])) ?></li> + <li><i class="fa fa-folder fa-fw"></i><?= Helper\a(t('All projects'), 'project', 'index') ?></li> + </ul> + </div> + <section class="sidebar-container" id="project-section"> + + <?= Helper\template('project/sidebar', array('project' => $project)) ?> + + <div class="sidebar-content"> + <?= $project_content_for_layout ?> + </div> + </section> +</section>
\ No newline at end of file |