-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
29 lines (27 loc) · 928 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
<?php get_header(); ?>
<div id="primary">
<div id="main">
<div class="container">
<?php
while(have_posts()) :
the_post();
get_template_part('template-parts/content', 'single');
?>
<div class="row">
<div class="pages text-left col-6">
<?php next_post_link(''); ?>
</div>
<div class="pages text-right col-6">
<?php previous_post_link(); ?>
</div>
</div>
<?php
if(comments_open() || get_comments_number()) :
comments_template();
endif;
endwhile;
?>
</div>
</div>
</div>
<?php get_footer(); ?>