-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.php
28 lines (26 loc) · 1001 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
<?php
/**
* The default template for displaying content. Used for both single and index/archive/search.
*
* @subpackage Reverie
* @since Reverie 4.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class('index-card'); ?>>
<header>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php reverie_entry_meta(); ?>
</header>
<?php edit_post_link('Edit this Post'); ?>
<div class="entry-content">
<div class="row">
<?php if ( has_post_thumbnail() ) { ?>
<div class="medium-3 hide-for-small columns"><figure class="th"><a href="<?php the_permalink(); ?>"><?php if ( has_post_thumbnail() ) {the_post_thumbnail('large'); } ?></a></figure></div>
<div class="medium-9 columns"><?php the_excerpt(); ?></div>
<?php } else { ?>
<div class="columns"><?php the_excerpt(); ?></div>
<?php } ?>
</div>
<p class="entry-tags"><?php the_tags(); ?></p>
</div>
</article>