archive-jetpack-portfolio.php 984 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * The template for displaying the Portfolio archive page.
  4. *
  5. * @package Sketch
  6. */
  7. get_header(); ?>
  8. <section id="primary" class="content-area">
  9. <main id="main" class="site-main" role="main">
  10. <?php if ( have_posts() ) : ?>
  11. <?php sketch_portfolio_title( '<header class="page-header"><h1 class="page-title">', '</h1></header>' ); ?>
  12. <?php sketch_portfolio_featured_image( '<div class="portfolio-featured-image">', '</div>' ); ?>
  13. <?php sketch_portfolio_content( '<div class="portfolio-entry-content">', '</div>' ); ?>
  14. <?php /* Start the Loop */ ?>
  15. <div class="portfolio-projects">
  16. <?php while ( have_posts() ) : the_post(); ?>
  17. <?php get_template_part( 'content', 'portfolio' ); ?>
  18. <?php endwhile; ?>
  19. <?php sketch_paging_nav(); ?>
  20. </div><!-- .projects -->
  21. <?php else : ?>
  22. <?php get_template_part( 'content', 'none' ); ?>
  23. <?php endif; ?>
  24. </main><!-- #main -->
  25. </section><!-- #primary -->
  26. <?php get_footer(); ?>