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

Fix image + hide empty links next / prev

parent 08b6d8ce
Branches
No related tags found
No related merge requests found
<?php theme_include('header'); ?> <?php theme_include('header'); ?>
<section class="content wrap" id="article-<?php echo article_id(); ?>"> <section class="content wrap" id="article-<?php echo article_id(); ?>">
<div class="row" style="padding:70px"> <div class="row" style="padding:70px">
<div class="col-md-4 col-sd-12"> <div class="col-md-5 col-sd-12">
<?php echo article_img(article_slug());?> <?php echo article_img(article_slug());?>
</div> </div>
<div class="col-md-8 col-sd-12"> <div class="col-md-7 col-sd-12">
<h2> <h2>
<?php echo article_title(); ?> <?php echo article_title(); ?>
</h2> </h2>
...@@ -19,9 +19,13 @@ ...@@ -19,9 +19,13 @@
<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"> <ul style="list-style:none;box-sizing:border-box">
<?php if(!empty(article_previous_url())):?>
<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_previous_url()?>">Article précédent</a></li>
<?php endif?>
<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_category_url()?>">Tous les articles de la catégorie <?php echo article_category();?></a></li>
<?php if(!empty(article_next_url())):?>
<li style="float:left;padding:15px"><a href="<?php echo article_next_url()?>">Article suivant</a></li> <li style="float:left;padding:15px"><a href="<?php echo article_next_url()?>">Article suivant</a></li>
<?php endif?>
</ul> </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