<?php /* Template Name: Fullwidth Container */ ?>

<?php get_header(); ?>
<?php if ( has_nav_menu( 'menu-1' ) ) { ?>
  <main id="primary" class="site-main fullwidth-container-with-menu" data-dev-title="<?php echo esc_attr( basename( $template ) ); ?>">
<?php }else{ ?>
  <main id="primary" class="site-main fullwidth-container-no-menu" data-dev-title="<?php echo esc_attr( basename( $template ) ); ?>">
<?php }; ?>

  <?php
  if (have_posts()) :

    if (is_home() && !is_front_page()) :
  ?>
      <header>
        <h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
      </header>
      
  <?php
    endif;

    /* Start the Loop */
    while (have_posts()) :
      the_post();
      the_content();
    endwhile;

    the_posts_navigation();

  else :

    get_template_part('template-parts/content', 'none');

  endif;
  ?>

</main><!-- #main -->
<?php get_footer() ?>
