-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
28 lines (24 loc) · 979 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
<?php get_header(); ?>
<main class="ui container two column stackable grid">
<?php get_sidebar(); ?>
<div class="apc-main twelve wide column">
<div class="ui leaderboard ad hide">
<a href="#" target="_blank" rel="nofollow"><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/site-header-ad.png"></a>
</div>
<?php
// Start the loop.
while ( have_posts() ) : the_post();
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
get_template_part( "detail_post_navigation" );
comments_template();
// End the loop.
endwhile;
?>
</div>
</main><!-- main end -->
<?php get_footer(); ?>