-
Notifications
You must be signed in to change notification settings - Fork 0
/
content-agenda.php
33 lines (29 loc) · 1.03 KB
/
content-agenda.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
<?php
/**
* Content for post type 'Agenda'
*
* @package Flacso
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'media' ); ?>>
<div class="entry-image pull-left">
<a href="<?php the_permalink(); ?>">
<?php if ( has_post_thumbnail() ) : ?>
<?php the_post_thumbnail( 'thumbnail' ); ?>
<?php endif; ?>
</a>
</div><!-- .entry-image -->
<div class="media-body">
<header class="entry-header">
<div class="entry-meta">
<?php the_category(' '); ?>
</div><!-- .entry-meta -->
<?php the_title( sprintf( '<h1 class="entry-title media-heading"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h1>' ); ?>
</header><!-- .entry-header -->
<div class="entry-content entry-content--summary">
<?php echo flacso_the_agenda_list(); ?>
<?php the_excerpt(); ?>
</div><!-- .entry-content -->
</div><!-- .media-body -->
<a href="<?php the_permalink(); ?>" class="read-more pull-right"><?php _e( 'Read more', 'flacso' ); ?><span class="more-sign">+</span></a>
</article><!-- #post-## -->