content-portfolio-archive.php 797 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * The template used for displaying Jetpack Portfolio posts on single porfolio pages
  4. *
  5. * @package Lodestar
  6. */
  7. ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <header class="entry-header">
  10. <?php lodestar_portfolio_title( '<h1 class="page-title">', '</h1>' ); ?>
  11. </header>
  12. <?php lodestar_portfolio_content( '<div class="portfolio-content"><div class="page-content">', '</div></div>' ); ?>
  13. </article><!-- #post-<?php the_ID(); ?> -->
  14. <div class="portfolio-projects" id="portfolio-projects">
  15. <div class="portfolio-wrapper" id="main">
  16. <?php while ( have_posts() ) : the_post(); ?>
  17. <?php get_template_part( 'components/features/portfolio/content', 'portfolio' ); ?>
  18. <?php endwhile; ?>
  19. </div><!-- .portfolio-wrapper -->
  20. </div><!-- .portfolio-projects -->