-
Notifications
You must be signed in to change notification settings - Fork 1
/
content-summary.php
30 lines (23 loc) · 1.01 KB
/
content-summary.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php if ( 'post' == get_post_type() ) : ?>
<?php the_title( sprintf( '<h1 class="entry-title lead"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h1>' ); ?>
<div class="entry-meta">
<?php countypages_posted_on(); ?>
</div><!-- .entry-meta -->
<?php endif; ?>
</header><!-- .entry-header -->
<div class="entry-summary">
<?php if ( has_post_thumbnail() ) the_post_thumbnail( 'excerpt-thumbnail', array( 'class' => 'img-polaroid' ) ); ?>
<?php the_excerpt( ); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'countypages' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php countypages_entry_footer(); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-## -->