<?php
/*
Template name: Container
*/
get_header();
?>
<div class="container">
<?php
/**
* Hook Bakery heading
* panel_heading()
* title + breadcrumbs
*
* @since 1.0
* @author nouthemes [nouthemes@gmail.com]
*/
do_action('noubakery_heading');
?>
<?php
while ( have_posts() ) : the_post();
the_content();
endwhile;
?>
</div>
<?php get_footer();?>