123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Template part for displaying abbreviated posts as excerpts.
- *
- * @package Pique
- */
- ?>
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <?php the_title( sprintf( '<h3 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h3>' ); ?>
- <?php if ( 'post' === get_post_type() ) : ?>
- <div class="entry-meta">
- <?php pique_posted_on(); ?>
- </div><!-- .entry-meta -->
- <?php endif; ?>
- </header><!-- .entry-header -->
- <div class="entry-content">
- <?php the_excerpt(); ?>
- </div><!-- .entry-content -->
- </article><!-- #post-## -->
|