<?php /** * Template Name: Full-width, no sidebar * Description: A full-width template with no sidebar * * @package WordPress * @subpackage Sparkle Vitae * @since Sparkle Vitae 1.0 */ get_header(); ?> <?php $content_width = 960; ?> <div id="primary" class="full-width"> <div id="content" role="main"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'page' ); ?> <?php comments_template( '', true ); ?> <?php endwhile; // end of the loop. ?> </div><!-- #content --> </div><!-- #primary --> <?php get_footer(); ?>