diff options
| author | 2013-04-13 10:21:31 +0200 | |
|---|---|---|
| committer | 2013-04-13 10:21:31 +0200 | |
| commit | c12af70b1005635006f61a13ce6dd43bd5444557 (patch) | |
| tree | 795696405c74d3cd6fbb89cfb4576f7a64f075c8 /app/layout | |
| parent | d5b761b5126aa087064eaa1d4c7ab1e9fe117980 (diff) | |
Fix issue #54 : suppression contenu attribut alt pour les favicons
Diffstat (limited to 'app/layout')
| -rw-r--r-- | app/layout/aside_feed.phtml | 2 | ||||
| -rw-r--r-- | app/layout/aside_flux.phtml | 4 | ||||
| -rw-r--r-- | app/layout/nav_menu.phtml | 2 |
3 files changed, 5 insertions, 3 deletions
diff --git a/app/layout/aside_feed.phtml b/app/layout/aside_feed.phtml index aaeb225eb..bd92b3393 100644 --- a/app/layout/aside_feed.phtml +++ b/app/layout/aside_feed.phtml @@ -35,7 +35,7 @@ <?php foreach ($this->feeds as $feed) { ?> <li class="item<?php echo ($this->flux && $this->flux->id () == $feed->id ()) ? ' active' : ''; ?>"> <a href="<?php echo _url ('configure', 'feed', 'id', $feed->id ()); ?>"> - <img class="favicon" src="http://g.etfv.co/<?php echo $feed->website (); ?>" alt="favicon <?php echo $feed->name (); ?>" /> + <img class="favicon" src="http://g.etfv.co/<?php echo $feed->website (); ?>" alt="" /> <?php echo $feed->name (); ?> </a> </li> diff --git a/app/layout/aside_flux.phtml b/app/layout/aside_flux.phtml index 1d1700170..c7b520b35 100644 --- a/app/layout/aside_flux.phtml +++ b/app/layout/aside_flux.phtml @@ -1,4 +1,4 @@ -<div class="aside aside_flux"> +<div class="aside aside_flux" id="aside_flux"> <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> @@ -60,7 +60,7 @@ <?php $not_read = $feed->nbNotRead (); ?> - <img class="favicon" src="http://g.etfv.co/<?php echo $feed->website (); ?>" alt="favicon <?php echo $feed->name (); ?>" /> + <img class="favicon" src="http://g.etfv.co/<?php echo $feed->website (); ?>" alt="" /> <?php echo $not_read > 0 ? '<b>' : ''; ?> <a class="feed" href="<?php echo _url ('index', 'index', 'get', 'f_' . $feed->id ()); ?>"> <?php echo $not_read > 0 ? '(' . $not_read . ') ' : ''; ?> diff --git a/app/layout/nav_menu.phtml b/app/layout/nav_menu.phtml index 4962c3aa5..e30823321 100644 --- a/app/layout/nav_menu.phtml +++ b/app/layout/nav_menu.phtml @@ -1,4 +1,6 @@ <div class="nav_menu"> + <a class="btn" href="#aside_flux"><i class="icon i_configure"></i></a> + <a class="btn" href="<?php echo _url ('feed', 'actualize'); ?>"><i class="icon i_refresh"></i></a> <?php |
