diff options
author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-04-26 20:04:39 -0400 |
---|---|---|
committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-04-26 20:04:39 -0400 |
commit | 6551609d1b248011d301080c1be7c48085dc5d55 (patch) | |
tree | 0b09326b95232338f9f61dfe6268ced206e5b78b /templates/layout.php | |
parent | 3332949c8baae581ea70ce5c61bb2a6225100422 (diff) |
Add a filter by user and due date + minor changes
Diffstat (limited to 'templates/layout.php')
-rw-r--r-- | templates/layout.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/layout.php b/templates/layout.php index 0791b910..40c0b321 100644 --- a/templates/layout.php +++ b/templates/layout.php @@ -9,7 +9,7 @@ <link rel="apple-touch-icon" sizes="72x72" href="assets/img/touch-icon-ipad.png"> <link rel="apple-touch-icon" sizes="114x114" href="assets/img/touch-icon-iphone-retina.png"> <link rel="apple-touch-icon" sizes="144x144" href="assets/img/touch-icon-ipad-retina.png"> - <title><?= isset($title) ? Helper\escape($title) : 'Kanboard' ?></title> + <title><?= isset($title) ? Helper\escape($title).' - Kanboard' : 'Kanboard' ?></title> <?php if (isset($auto_refresh)): ?> <meta http-equiv="refresh" content="<?= AUTO_REFRESH_DURATION ?>" > <?php endif ?> @@ -23,19 +23,19 @@ <a class="logo" href="?">kan<span>board</span></a> <ul> <li <?= isset($menu) && $menu === 'boards' ? 'class="active"' : '' ?>> - <a href="?controller=board"><?= t('boards') ?></a> + <a href="?controller=board"><?= t('Boards') ?></a> </li> <li <?= isset($menu) && $menu === 'projects' ? 'class="active"' : '' ?>> - <a href="?controller=project"><?= t('projects') ?></a> + <a href="?controller=project"><?= t('Projects') ?></a> </li> <li <?= isset($menu) && $menu === 'users' ? 'class="active"' : '' ?>> - <a href="?controller=user"><?= t('users') ?></a> + <a href="?controller=user"><?= t('Users') ?></a> </li> <li <?= isset($menu) && $menu === 'config' ? 'class="active"' : '' ?>> - <a href="?controller=config"><?= t('settings') ?></a> + <a href="?controller=config"><?= t('Settings') ?></a> </li> <li> - <a href="?controller=user&action=logout"><?= t('logout') ?></a> + <a href="?controller=user&action=logout"><?= t('Logout') ?></a> (<?= Helper\escape($_SESSION['user']['username']) ?>) </li> </ul> |