wordpress/php-fpm/wordpress_files/themes/sd-bushwick/single.php
2020-05-22 01:40:23 +00:00

35 lines
668 B
PHP

<?php
/**
* The Template for displaying all single posts.
*
* @package Bushwick
*/
get_header();
?>
<div id="primary" class="content-area">
<?php get_template_part('navigation'); ?>
<main id="main" class="site-main" role="main">
<a id="content_scroll"></a>
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'content', 'single' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer();