File "single-portfolio.php"

Full Path: /home/fineflavourcocoa/public_html/wp-content/themes/grd/js/single-portfolio.php
File size: 785 bytes
MIME-type: text/x-php
Charset: utf-8

<?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(); ?>