-
Notifications
You must be signed in to change notification settings - Fork 0
/
content-grid.php
27 lines (23 loc) · 971 Bytes
/
content-grid.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
<?php
/**
* The template used for displaying child page on the grid template.
*
* @package Motif
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'child-page' ); ?>>
<?php if ( '' != get_the_post_thumbnail() ) : ?>
<div class="entry-thumbnail">
<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'motif' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="<?php the_ID(); ?>">
<?php the_post_thumbnail( 'motif-grid-thumbnail' ); ?>
</a>
</div><!-- .entry-thumbnail -->
<?php endif; ?>
<header class="entry-header">
<h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
</header><!-- .entry-header -->
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php edit_post_link( __( 'Edit', 'motif' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?>
</article><!-- #post-## -->