diff --git a/article.php b/article.php index 8282be72e42c2407afe170b5b7f32b2ddfc39bf9..72c9ae1c8fe240606ef6d56b3d1d8ad1a22e084b 100644 --- a/article.php +++ b/article.php @@ -18,6 +18,11 @@ <!-- Unfortunately, CSS means everything's got to be inline. --> <p>Article numéro: <?php echo article_number(article_id()); ?>, <?php echo count_words(article_markdown()); ?> mots <?php if(comments_open()): ?>, <?php echo total_comments();?> <?php echo pluralise(total_comments(), "commentaire", "s") ?>.<?php endif; ?> <?php echo article_custom_field('attribution'); ?></p> + <ul style="list-style:none;box-sizing:border-box"> + <li style="float:left;padding:15px"><a href="<?php echo article_previous_url()?>">Article précédent</a></li> + <li style="float:left;padding:15px"><a href="<?php echo article_category_url()?>">Tous les articles de la catégorie <?php echo article_category();?></a></li> + <li style="float:left;padding:15px"><a href="<?php echo article_next_url()?>">Article suivant</a></li> + </ul> </section> </section>