blob: 2af58d93a3bb675b5c2d1b46b10a1ab04752f211 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php $_title = $this->render('header/title', array(
'project' => isset($project) ? $project : null,
'task' => isset($task) ? $task : null,
'description' => isset($description) ? $description : null,
'title' => $title,
)) ?>
<?php $_top_right_corner = implode(' ', array(
$this->render('header/user_notifications'),
$this->render('header/creation_dropdown'),
$this->render('header/user_dropdown')
)) ?>
<header>
<div class="title-container">
<?= $_title ?>
</div>
<div class="board-selector-container">
<?php if (! empty($board_selector)): ?>
<?= $this->render('header/board_selector', array('board_selector' => $board_selector)) ?>
<?php endif ?>
</div>
<div class="menus-container pull-right">
<?= $_top_right_corner ?>
</div>
</header>
|