-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
27 lines (22 loc) · 891 Bytes
/
single.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php get_header(); ?>
<main class="container">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article class="post">
<?php the_post_thumbnail(); ?>
<h1><?php the_title(); ?></h1>
<div class="post__meta">
<?php echo get_avatar(get_the_author_meta('ID'), 40); ?>
<p>
Publié le <?php the_date(); ?>
par <?php the_author(); ?>
Dans la catégorie <?php the_category(); ?>
Avec les étiquettes <?php the_tags(); ?>
</p>
</div>
<div class="post__content">
<?php the_content(); ?>
</div>
</article>
<?php endwhile; endif; ?>
</main>
<?php get_footer(); ?>