52dc0b9c5c
Fixes #30 Fixes #35 Fixes #36 Fixes #38 Fixes #40 Fixes #43 Fixes #44 Fixes #46 Fixes #47 Fixes #49 Fixes #51 Fixes #53
36 lines
1.2 KiB
PHP
36 lines
1.2 KiB
PHP
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
|
|
|
|
<?php include(TEMPLATEPATH . '/components/article/flags.php'); ?>
|
|
|
|
<article class="article container-article" id="post-<?php the_ID(); ?>">
|
|
<?php if ($haveTitle) { ?>
|
|
<h1 class="page-title"><?php the_title(); ?></h1>
|
|
<p class="align-right"><span class="btn-small btn-secondary"> <?php echo reading_time(); ?> </span></p>
|
|
<?php } else { ?>
|
|
<h1 class="sr-only"><?php the_title(); ?></h1>
|
|
<?php } ?>
|
|
|
|
<div class="article-entry mb-1">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
</article>
|
|
|
|
<section class="card card-noheader">
|
|
<div class="author-area">
|
|
<?php echo get_avatar( get_the_author_meta('user_email'), $size = '120'); ?>
|
|
<div class="author-metadata">
|
|
<div class="author-pseudo">Écrit par <a href="https://kazhnuz.space"><?php the_author() ?></a></div>
|
|
<small class="author-date">Le <?php the_time('l j F Y à H:i') ?></small>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<?php include(TEMPLATEPATH . '/components/article/description.php'); ?>
|
|
|
|
<div class="article-category">
|
|
<?php include(TEMPLATEPATH . '/components/article/terms.php'); ?>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<?php endwhile; ?>
|
|
<?php endif; ?>
|