Amélioration de la liste des liens de pagination.

Lien inutile redirigeant vert la page actuelle retiré, code plus simple (selon moi) et ajout des attributs `rel=prev` et `rel=next` (plus sémantique).
This commit is contained in:
Garreau Alexandre 2013-10-14 23:52:26 +02:00
parent 732a014256
commit 46d26c3c06

View file

@ -870,23 +870,20 @@ else
} }
$max = $vvb->countArticles(); $max = $vvb->countArticles();
if ($max > $config->articles_per_page) if ($max > $config->articles_per_page) {
{ echo "\n".' <nav>'."\n";
echo "\n".' <nav>'."\n"; if ($page > 1)
echo ' <a rel="prev" href="'.$vvb->getLocalURL($page - 1).'">&larr; '.__('Newer').'</a>'."\n";
if ($page > 1) $last = ceil($max / $config->articles_per_page);
echo ' <a href="'.$vvb->getLocalURL($page - 1).'">&larr; '.__('Newer').'</a>'."\n"; for ($i = 1; $i <= $last; $i++) {
echo ' '.($i == $page ? '<strong>'.$i.'</strong>' : '<a href="'.$vvb->getLocalURL($i).'">'.$i.'</a>')."\n";
}
$last = ceil($max / $config->articles_per_page); if ($page < $last)
for ($i = 1; $i <= $last; $i++) echo ' <a rel="next" href="'.$vvb->getLocalURL($page + 1).'">'.__('Older').' &rarr;</a>'."\n";
{
echo ' <a href="'.$vvb->getLocalURL($i).'">'.($i == $page ? '<strong>'.$i.'</strong>' : $i).'</a>'."\n";
}
if ($page < $last) echo ' </nav>';
echo ' <a href="'.$vvb->getLocalURL($page + 1).'">'.__('Older').' &rarr;</a>'."\n";
echo ' </nav>';
} }
} }