Skip to content

Instantly share code, notes, and snippets.

@kjtolsma
Created June 27, 2016 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kjtolsma/b457c49eea83f79bc931eecb12be8186 to your computer and use it in GitHub Desktop.
Save kjtolsma/b457c49eea83f79bc931eecb12be8186 to your computer and use it in GitHub Desktop.
<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