wordpress/php-fpm/wordpress_files/themes/wp-bootstrap-starter/blank-page.php

20 lines
489 B
PHP
Raw Normal View History

2020-05-22 03:40:23 +02:00
<?php
/**
* Template Name: Blank without Container
*/
get_header();
?>
<section id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', 'notitle' );
endwhile; // End of the loop.
?>
</main><!-- #main -->
</section><!-- #primary -->
<?php
get_footer();