1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Template/task/layout.php

15 lines
494 B
PHP
Raw Normal View History

2014-12-22 19:15:38 +01:00
<section id="main">
<div class="page-header">
<ul>
2015-01-16 14:23:05 +01:00
<li><i class="fa fa-table fa-fw"></i><?= $this->a(t('Back to the board'), 'board', 'show', array('project_id' => $task['project_id'])) ?></li>
2014-12-22 19:15:38 +01:00
</ul>
</div>
<section class="sidebar-container" id="task-section">
2015-01-16 14:23:05 +01:00
<?= $this->render('task/sidebar', array('task' => $task)) ?>
2014-12-22 19:15:38 +01:00
<div class="sidebar-content">
<?= $task_content_for_layout ?>
</div>
</section>
</section>