<?php 
        get_post_type_view('content');
        ?>
                <?php 
    }
    ?>

                <?php 
    the_posts_pagination(['prev_text' => __('Previous page', env('TEXT_DOMAIN')), 'next_text' => __('Next page', env('TEXT_DOMAIN'))]);
    ?>

            <?php 
} else {
    ?>
                <?php 
    get_post_type_view('content', 'none');
    ?>
            <?php 
}
?>
        </div><!-- /.section__content -->

    </section><!-- /.section -->

</main><!-- /.content -->

<?php 
get_sidebar('sidebar-1');
?>

<?php 
<?php

get_header();
the_post();
?>

<main class="content">
    <?php 
get_post_type_view('content', 'page');
?>
</main><!-- /.content -->

<?php 
get_footer();
?>

<main class="content">

    <?php 
if (is_singular('post')) {
    ?>
        <?php 
    the_post_navigation();
    ?>
    <?php 
}
?>

    <?php 
get_post_type_view('content');
?>

    <?php 
if (is_singular('post')) {
    ?>
        <?php 
    the_post_navigation();
    ?>
    <?php 
}
?>

</main><!-- /.content -->

<?php