Files
gustavoo-me/wp-content/themes/gustavoo-portfolio/front-page.php
T
2026-07-23 20:32:08 -03:00

42 lines
938 B
PHP

<?php
/**
* Portfolio landing page.
*
* @package Gustavo_Portfolio
*/
get_header();
?>
<main id="primary" class="site-main front-page">
<?php get_template_part( 'template-parts/front/hero' ); ?>
<?php get_template_part( 'template-parts/front/about' ); ?>
<?php get_template_part( 'template-parts/front/services' ); ?>
<?php get_template_part( 'template-parts/front/projects' ); ?>
<?php if ( is_page() && have_posts() ) : ?>
<?php
while ( have_posts() ) {
the_post();
$gustavoo_front_content = trim( (string) get_the_content() );
if ( $gustavoo_front_content ) {
?>
<div class="section section--custom-content">
<div class="site-shell entry-content">
<?php the_content(); ?>
</div>
</div>
<?php
}
}
?>
<?php endif; ?>
<?php get_template_part( 'template-parts/front/contact' ); ?>
<?php get_template_part( 'template-parts/front/posts' ); ?>
</main>
<?php
get_footer();