File: /home/ankarasy/domains/ankarasymm.com/private_html/wp-content/themes/alomaliye4/single.php
<?php
/**
* The Template for displaying all single posts.
*
* @package ascent
*/
get_header(); ?>
<div class="row">
<div class="col-sm-12 col-md-9">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'single' ); ?>
<?php ascent_content_nav( 'nav-below' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() )
comments_template();
?>
<?php endwhile; // end of the loop. ?>
</div>
<div class="col-sm-12 col-md-3">
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>