-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsingle.php
24 lines (20 loc) · 968 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
<?php get_header(); ?>
<div id="content-container">
<div id="content">
<?php if ( have_posts() ):?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="article">
<h2 class="post-title"><?php the_title(); ?></h2>
<div class="entry">
<?php the_content(); ?>
</div>
<?php get_template_part( 'parts/postmetadata', 'single' ); ?>
</div><!-- #article -->
<?php comments_template(); ?>
<?php endwhile; ?>
<?php else : ?>
<h2>Not found</h2>
<?php endif; ?>
</div> <!-- #content -->
</div><!-- #content-container -->
<?php get_footer(); ?>