File: /home/mmickelson/jennysmasks.com/wp-content/themes/boldgrid-westview/templates/content-single.php
<?php
/**
* Single Template
*
* This file contains the markup for the single template.
*
* @package Prime
*/
?>
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php do_action( 'before_entry_title' ); ?>
<header class="entry-header">
<?php get_template_part( 'templates/entry-header' ); ?>
<div class="entry-meta">
<?php boldgrid_posted_on(); ?>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<?php do_action( 'after_entry_title' ); ?>
<div class="entry-content">
<?php if ( has_post_thumbnail() ) : ?>
<?php the_post_thumbnail(); ?>
<?php endif; ?>
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<nav class="page-nav"><p>' . __( 'Pages:', 'bgtfw' ), 'after' => '</p></nav>' ) ); ?>
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php boldgrid_entry_footer(); ?>
</footer><!-- .entry-footer -->
<?php boldgrid_post_nav(); ?>
<?php if ( comments_open() || get_comments_number() ) : ?>
<?php comments_template( '/templates/comments.php' ); ?>
<?php endif; ?>
</article><!-- #post-## -->
<?php endwhile; ?>