front-page.php 736 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * The static front page template
  4. *
  5. * @package AltoFocus
  6. */
  7. if ( 'posts' == get_option( 'show_on_front' ) ) :
  8. get_template_part( 'index' );
  9. else :
  10. get_header(); ?>
  11. <div id="primary" class="content-area">
  12. <main id="main" class="site-main" role="main">
  13. <?php while ( have_posts() ) : the_post(); ?>
  14. <?php if ( get_page_template_slug( get_the_ID() ) ) { ?>
  15. <?php get_template_part( 'components/page/content', 'page-portfolio' ); ?>
  16. <?php } else { ?>
  17. <?php get_template_part( 'components/page/content', 'page' ); ?>
  18. <?php } ?>
  19. <?php endwhile; ?>
  20. <?php get_template_part( 'components/features/portfolio/portfolio' ); ?>
  21. </main>
  22. </div>
  23. <?php get_footer(); ?>
  24. <?php endif; ?>