File: /home/aliazzsr/trn2.mesegroup.de/wp-content/themes/best-shop/full-width.php
<?php
/**
* Template Name: Full-Width
*/
get_header();
?>
<div id="primary" class="content-area">
<div class="container">
<div class="breadcrumb-wrapper">
<?php best_shop_breadcrumb(); ?>
</div>
<div class="page-grid">
<div id="main" class="site-main">
<?php
while ( have_posts() ) :
the_post();
/*
* Include the Post Type content-page template
*/
get_template_part( 'template-parts/content', 'page' );
// 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;
endwhile; // End of the loop.
?>
</div>
</div>
</div>
</div>
<?php
get_footer();