first commit

This commit is contained in:
gustavooth
2026-07-23 20:32:08 -03:00
commit 2df14d57dd
62 changed files with 9780 additions and 0 deletions
@@ -0,0 +1,27 @@
<?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();