Created
June 27, 2016 19:21
-
-
Save kjtolsma/b457c49eea83f79bc931eecb12be8186 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1 class"page-title"> | |
<?php esc_html_e( 'Events', 'textdomain' ); ?> | |
</h1> | |
<?php if ( have_posts() ) : ?> | |
<ul class="events"> | |
<?php while ( have_posts() ) : the_post(); ?> | |
<li class="event"> | |
<h2 class="event-title"> | |
<?php the_title(); ?> | |
</h2> | |
<span class="event-countdown" data-date="<?php echo esc_attr( pronamic_get_the_start_date( 'Y/m/d H:i' ) ); ?>"></span> | |
<div class="event-content"> | |
<?php the_excerpt(); ?> | |
</div> | |
</li> | |
<?php endwhile; ?> | |
</ul> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment