content-portfolio-archive.php 696 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * The template used for displaying Portfolio Archive view
  4. *
  5. * @package Illustratr
  6. */
  7. ?>
  8. <?php illustratr_portfolio_thumbnail( '<div class="entry-thumbnail">', '</div>' ); ?>
  9. <header class="page-header">
  10. <?php illustratr_portfolio_title( '<h1 class="page-title">', '</h1>' ); ?>
  11. <?php illustratr_portfolio_content( '<div class="taxonomy-description">', '</div>' ); ?>
  12. </header><!-- .page-header -->
  13. <div class="portfolio-wrapper">
  14. <?php /* Start the Loop */ ?>
  15. <?php while ( have_posts() ) : the_post(); ?>
  16. <?php get_template_part( 'content', 'portfolio' ); ?>
  17. <?php endwhile; ?>
  18. </div><!-- .portfolio-wrapper -->
  19. <?php illustratr_paging_nav( $post->max_num_pages ); ?>