-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
33 lines (33 loc) · 990 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
28
29
30
31
32
33
<?php get_header(); ?>
<article class="full-post">
<?php
while (have_posts()) :
the_post(); ?>
<header class="entry-header">
<h1><?php the_title(); ?></h1>
<div class="meta"><?php the_author_posts_link(); ?> / <?php the_date(); ?> at <span class="time"><?php the_time(); ?></span></div>
</header>
<?php
the_content(); ?>
<footer class="entry-footer <?php if (has_tag()) : ?>tagged<?php endif; ?>">
<div class="meta">
<?php
the_tags();
?>
</div>
<?php
the_post_navigation(); ?>
</div>
<?php
// If comments are open or we have at least one comment, load up the comment template.
/*
if (comments_open() || get_comments_number()) {
comments_template();
}*/
?>
<?php
endwhile;
?>
</article>
<?php
get_footer();