<?php /** * The Template for displaying all single posts. * * @package Grd */ get_header(); ?> <div id="primary" class="col-xs-12 col-sm-12 content-area content-single-portfolio"> <div class="row"> <?php while ( have_posts() ) : the_post(); ?> <div <?php post_class() ?>> <?php grd_portfolio_single_thumbnail();?> <?php grd_portfolio_single_title();?> <div class="col-xs-12 content-sv"> <?php the_content(); ?> </div> </div> <?php // 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; ?> <?php endwhile; ?> </div> <?php grd_portfolio_nav(); ?> </div><!-- #primary --> <?php get_footer(); ?>