wordpress/php-fpm/wordpress_files/themes/wp-bootstrap-starter/blank-page-with-container.php
2020-05-22 01:40:23 +00:00

22 lines
551 B
PHP

<?php
/**
* Template Name: Blank with Container
*/
get_header();
?>
<section id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<div class="container">
<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', 'notitle' );
endwhile; // End of the loop.
?>
</div>
</main><!-- #main -->
</section><!-- #primary -->
<?php
get_footer();