mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
22 lines
551 B
PHP
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();
|