content-card.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /**
  3. * Template part for displaying projects and posts in a grid display for masonry and infinite-scroll
  4. *
  5. * @link https://codex.wordpress.org/Template_Hierarchy
  6. *
  7. * @package Rebalance
  8. */
  9. ?>
  10. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  11. <?php if ( rebalance_has_post_thumbnail() ) { ?>
  12. <div class="entry-image-section">
  13. <a href="<?php the_permalink() ?>" class="entry-image-link">
  14. <figure class="entry-image">
  15. <?php the_post_thumbnail( 'rebalance-archive' ); ?>
  16. </figure>
  17. </a>
  18. </div>
  19. <?php } ?>
  20. <header class="entry-header">
  21. <?php the_title( sprintf( '<h1 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h1>' ); ?>
  22. </header><!-- .entry-header -->
  23. <?php // Only show excerpts and meta data for blog posts
  24. if ( 'jetpack-portfolio' != get_post_type() ) { ?>
  25. <div class="entry-content">
  26. <?php the_excerpt(); ?>
  27. </div><!-- .entry-content -->
  28. <?php } ?>
  29. <footer class="entry-meta">
  30. <?php rebalance_entry_footer(); ?>
  31. </footer><!-- .entry-meta -->
  32. </article><!-- #post-## -->