taxonomy-jetpack-portfolio-type.php 579 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * The template for displaying the Portfolio archive page.
  4. *
  5. * @package Lodestar
  6. */
  7. get_header();
  8. $jetpack_portfolio_content = get_option( 'jetpack_portfolio_content' ); ?>
  9. <div class="wrap">
  10. <div id="primary" class="content-area">
  11. <main class="site-main" role="main">
  12. <?php
  13. if ( have_posts() ) {
  14. get_template_part( 'components/features/portfolio/content', 'portfolio-archive' );
  15. } else {
  16. get_template_part( 'template-parts/content', 'none' );
  17. }
  18. ?>
  19. </main><!-- #main -->
  20. </div><!-- #primary -->
  21. </div><!-- .wrap -->
  22. <?php
  23. get_footer();