Skip to content
Snippets Groups Projects
Verified Commit bf6c0b19 authored by David Beniamine's avatar David Beniamine
Browse files

Navigation links

parent 59811c1d
Branches
No related tags found
No related merge requests found
...@@ -18,6 +18,11 @@ ...@@ -18,6 +18,11 @@
<!-- Unfortunately, CSS means everything's got to be inline. --> <!-- Unfortunately, CSS means everything's got to be inline. -->
<p>Article num&eacute;ro: <?php echo article_number(article_id()); ?>, <?php echo count_words(article_markdown()); ?> mots <?php if(comments_open()): ?>, <p>Article num&eacute;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> <?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>
</section> </section>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment