diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-01-17 17:27:34 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-01-17 17:27:34 -0500 |
commit | 74e4a7b0642b18d9aaa71dd72359495c5dc99107 (patch) | |
tree | 9bfd7dc1b49c7634536e4226af082dba8d1d8369 /app/Template/project/layout.php | |
parent | 84b0f0df90442775b9122457648f06c9485df1f1 (diff) |
Add top links to the calendar
Diffstat (limited to 'app/Template/project/layout.php')
-rw-r--r-- | app/Template/project/layout.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/app/Template/project/layout.php b/app/Template/project/layout.php index ce154c19..8cd1fd3c 100644 --- a/app/Template/project/layout.php +++ b/app/Template/project/layout.php @@ -1,8 +1,14 @@ <section id="main"> <div class="page-header"> <ul> - <li><i class="fa fa-table fa-fw"></i><?= $this->a(t('Back to the board'), 'board', 'show', array('project_id' => $project['id'])) ?></li> - <li><i class="fa fa-folder fa-fw"></i><?= $this->a(t('All projects'), 'project', 'index') ?></li> + <li> + <i class="fa fa-table fa-fw"></i> + <?= $this->a(t('Back to the board'), 'board', 'show', array('project_id' => $project['id'])) ?> + </li> + <li> + <i class="fa fa-folder fa-fw"></i> + <?= $this->a(t('All projects'), 'project', 'index') ?> + </li> </ul> </div> <section class="sidebar-container" id="project-section"> |