File: /home/mmickelson/dragonexpert.com/wp-content/themes/coni/template-fullwidth.php
<?php
/*
Template Name: Full Width
*/
?>
<?php
/**
* The template for displaying a full width page (no sidebar).
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Coni
*/
get_header(); ?>
<main id="main" class="site-main col-md-12" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content', 'page' ); ?>
<?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; // End of the loop. ?>
</main><!-- #main -->
<?php get_footer(); ?>