archive-jetpack-portfolio.php 470 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * The template for displaying the Portfolio archive page.
  4. *
  5. * @package Illustratr
  6. */
  7. get_header(); ?>
  8. <section id="primary" class="content-area">
  9. <main id="main" class="site-main" role="main">
  10. <?php
  11. if ( have_posts() ) {
  12. get_template_part( 'content', 'portfolio-archive' );
  13. } else {
  14. get_template_part( 'content', 'none' );
  15. }
  16. ?>
  17. </main><!-- #main -->
  18. </section><!-- #primary -->
  19. <?php get_sidebar(); ?>
  20. <?php get_footer(); ?>