blob: c8cc92365ceae866316f51f1b3f6dc895e6c37e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<section id="main">
<div class="page-header">
<h2><?= t('Project "%s"', $project['name']) ?></h2>
<ul>
<li><a href="?controller=board&action=show&project_id=<?= $project['id'] ?>"><?= t('Back to the board') ?></a></li>
<li><a href="?controller=project"><?= t('All projects') ?></a></li>
</ul>
</div>
<section class="project-show" id="project-section">
<?= Helper\template('project_sidebar', array('project' => $project)) ?>
<div class="project-show-main">
<?= $project_content_for_layout ?>
</div>
</section>
</section>
|