aboutsummaryrefslogtreecommitdiff
path: root/app/layout
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-03-16 18:20:52 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-03-16 18:20:52 +0100
commitcfcf0f26aca7287cf8635094e58a33c4963c8d39 (patch)
tree306c24d4da8be391792b6e81310b80f430da7816 /app/layout
parent870ff2fa07dbe7dafc5c816ab6e74d2f9815296a (diff)
Ajout d'une page à propos + modifs designs
Diffstat (limited to 'app/layout')
-rw-r--r--app/layout/aside_flux.phtml4
-rw-r--r--app/layout/header.phtml1
2 files changed, 5 insertions, 0 deletions
diff --git a/app/layout/aside_flux.phtml b/app/layout/aside_flux.phtml
index 43728bc6c..2faa7b464 100644
--- a/app/layout/aside_flux.phtml
+++ b/app/layout/aside_flux.phtml
@@ -8,7 +8,9 @@
<a class="btn category<?php echo !$this->get ? ' active' : ''; ?>" href="<?php echo _url ('index', 'index'); ?>">
<i class="icon all"></i>
Tous (<?php echo $this->nb_total; ?>)
+ <?php if ($this->nb_not_read > 0) { ?>
<span class="notRead"><?php echo $this->nb_not_read; ?> non lu<?php echo $this->nb_not_read > 1 ? 's' : ''; ?></span>
+ <?php } ?>
</a>
</li>
@@ -25,7 +27,9 @@
<li>
<a class="btn category<?php echo $this->get == $cat->id () ? ' active' : ''; ?>" href="<?php echo _url ('index', 'index', 'get', 'c_' . $cat->id ()); ?>">
<?php echo $cat->name (); ?>
+ <?php if ($catNotRead > 0) { ?>
<span class="notRead"><?php echo $catNotRead ?> non lu<?php echo $catNotRead > 1 ? 's' : ''; ?></span>
+ <?php } ?>
</a>
<?php if (!empty ($feeds)) { ?>
diff --git a/app/layout/header.phtml b/app/layout/header.phtml
index 811c2b4f1..1cc11c3f9 100644
--- a/app/layout/header.phtml
+++ b/app/layout/header.phtml
@@ -31,6 +31,7 @@
<a class="btn dropdown-toggle" href="#dropdown-configure"><i class="icon configure"></i></a>
<ul class="dropdown-menu">
<li class="dropdown-close"><a href="#close"><i class="icon close"></i></a></li>
+ <li class="dropdown-header">Configuration</li>
<li class="item"><a href="<?php echo _url ('configure', 'display'); ?>">Général et affichage</a></li>
<li class="item"><a href="<?php echo _url ('configure', 'categorize'); ?>">Catégories</a></li>
<li class="item"><a href="<?php echo _url ('configure', 'shortcut'); ?>">Raccourcis</a></li>