aboutsummaryrefslogtreecommitdiff
path: root/app/layout/aside_flux.phtml
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-03-13 22:48:13 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-03-13 22:48:13 +0100
commit9332fd5b0c1720a38aa5c85564da20c89a0f8a96 (patch)
tree3f6e3e5146e6510179408e93494b942f8b81a7b2 /app/layout/aside_flux.phtml
parentf597b8d1c9a97776f64c573157d04fc9832734d6 (diff)
Continuation du design : amélioration nav-list + ajout nav-head (avec gestion de la connexion) + début formulaires
Diffstat (limited to 'app/layout/aside_flux.phtml')
-rw-r--r--app/layout/aside_flux.phtml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/layout/aside_flux.phtml b/app/layout/aside_flux.phtml
index 916b03331..9403a0445 100644
--- a/app/layout/aside_flux.phtml
+++ b/app/layout/aside_flux.phtml
@@ -1,7 +1,8 @@
<div class="aside aside_flux">
- <?php if (isset ($this->cat_aside)) { ?>
<ul class="categories">
+ <?php if (!login_is_conf ($this->conf) || is_logged ()) { ?>
<li><a class="btn btn-important" href="<?php echo _url ('configure', 'feed'); ?>">Gestion des abonnements</a></li>
+ <?php } ?>
<li class="all">
<a class="btn category<?php echo !$this->get ? ' active' : ''; ?>" href="<?php echo _url ('index', 'index'); ?>">
@@ -30,10 +31,10 @@
<ul class="feeds">
<?php foreach ($feeds as $feed) { ?>
<li>
+ <a class="website" href="<?php echo $feed->website(); ?>"><i class="icon link"></i></a>
<img src="http://www.google.com/s2/favicons?domain=<?php echo get_domain ($feed->website ()); ?>" alt="" />
<a class="feed" href="<?php echo _url ('index', 'index', 'get', 'f_' . $feed->id ()); ?>">
<?php echo $feed->name(); ?>
- <!--<span>X non lu</span>-->
</a>
</li>
<?php } ?>
@@ -42,5 +43,4 @@
</li>
<?php } ?>
</ul>
- <?php } ?>
</div>