Files
gustavoo-me/wp-content/themes/gustavoo-portfolio/page.php
T

28 lines
428 B
PHP

<?php
/**
* Standard page template.
*
* @package Gustavo_Portfolio
*/
get_header();
?>
<main id="primary" class="site-main page-main">
<div class="site-shell content-narrow">
<?php
while ( have_posts() ) {
the_post();
get_template_part( 'template-parts/content/content', 'page' );
if ( comments_open() || get_comments_number() ) {
comments_template();
}
}
?>
</div>
</main>
<?php
get_footer();