File: /var/www/sites/30291/public_html/wp-content/themes/fernanda-menezes/page.php
<?php get_header(); ?>
<?php if (is_front_page() || is_page('home') || is_page('inicio')) : ?>
<?php get_template_part('template-parts/home-content'); ?>
<?php else : ?>
<main class="section">
<div class="section-inner">
<?php while (have_posts()) : the_post(); ?>
<article <?php post_class(); ?>>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
</article>
<?php endwhile; ?>
</div>
</main>
<?php endif; ?>
<?php get_footer(); ?>