content-grid.php 599 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * The template used for displaying featured page content in front-page.php
  4. *
  5. * @package Dara
  6. */
  7. ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <?php the_title( sprintf( '<header class="entry-header"><h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2></header>' ); ?>
  10. <?php if ( has_post_thumbnail() ) { ?>
  11. <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
  12. <?php } ?>
  13. <div class="entry-summary">
  14. <?php the_excerpt(); ?>
  15. </div><!-- .entry-summary -->
  16. </article><!-- #post-## -->