-
Notifications
You must be signed in to change notification settings - Fork 1
/
content.php
35 lines (29 loc) · 975 Bytes
/
content.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
31
32
33
34
35
<?php
/**
* The default template for displaying content. Used for both single and index/archive/search.
*
* @package Awakening
* @subpackage Awakening
* @since Awakening 1.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class('index-card'); ?> >
<header>
<hgroup>
<h2><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'awakening' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php if ( !is_sticky()) : ?>
<?php awakening_entry_meta(); ?>
<?php endif; ?>
</hgroup>
</header>
<?php if ( has_post_thumbnail()) : ?>
<div class="featured-img">
<a href="<?php the_permalink(); ?>" class="th" title="<?php the_title_attribute(); ?>" ><?php the_post_thumbnail('thumbnail'); ?></a>
</div>
<?php endif; ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<div style="clear:both;"/>
</article>
<!--<hr>-->