-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
36 lines (20 loc) · 717 Bytes
/
single.php
File metadata and controls
36 lines (20 loc) · 717 Bytes
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
34
35
36
<?php get_header(); ?>
<div class="row">
<div class="col-sm-8 blog-main">
<?php if ( have_posts () ) : while ( have_posts() ) : the_post(); ?>
<article class="blog-post">
<h2 class="blog-post-title"><?php the_title(); ?></h2>
<p class="blog-post-meta"><?php the_time( 'F j, Y' ); ?> by <?php the_author_posts_link(); ?></p>
<?php the_content(); ?>
</article><!-- /.blog-post -->
<div id="comments">
<hr>
<h2>Comments</h2>
<?php comments_template( '', true ); ?>
</div>
<?php endwhile; endif; ?>
</div><!-- /.blog-main -->
<?php get_sidebar(); ?>
</div><!-- /.row -->
</div><!-- /.container -->
<?php get_footer(); ?>