content-recent-posts.php 436 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Template part for displaying Recent Posts in the front page template
  4. *
  5. * @package Ixion
  6. */
  7. ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <header class="entry-header">
  10. <?php
  11. get_template_part( 'components/post/content', 'meta' );
  12. the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
  13. ?>
  14. </header>
  15. </article><!-- #post-## -->