author | ymh <ymh.work@gmail.com> |
Mon, 14 Oct 2019 17:39:30 +0200 | |
changeset 7 | cf61fcea0001 |
parent 0 | d970ebf37754 |
child 10 | 372f2766ea20 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* The template for displaying all single posts |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Twenty_Thirteen |
|
7 |
* @since Twenty Thirteen 1.0 |
|
8 |
*/ |
|
9 |
||
10 |
get_header(); ?> |
|
11 |
||
12 |
<div id="primary" class="content-area"> |
|
13 |
<div id="content" class="site-content" role="main"> |
|
14 |
||
15 |
<?php /* The loop */ ?> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
16 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
17 |
while ( have_posts() ) : |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
18 |
the_post(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
19 |
?> |
0 | 20 |
|
21 |
<?php get_template_part( 'content', get_post_format() ); ?> |
|
22 |
<?php twentythirteen_post_nav(); ?> |
|
23 |
<?php comments_template(); ?> |
|
24 |
||
25 |
<?php endwhile; ?> |
|
26 |
||
27 |
</div><!-- #content --> |
|
28 |
</div><!-- #primary --> |
|
29 |
||
30 |
<?php get_sidebar(); ?> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
31 |
<?php get_footer(); ?> |