Created
April 15, 2017 03:07
-
-
Save kalico1/82bd9f5b1226a252047babaa2f295c10 to your computer and use it in GitHub Desktop.
Revisions
-
kalico1 renamed this gist
Apr 15, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
kalico1 created this gist
Apr 15, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,39 @@ <?php // template used to display shortcode lists e.g., [eab_archive template="event-list-with-thumbnails"] also works with [eab_expired] // ?> <?php if ($events) { foreach ($events as $event) { ?> <section class="eab-events-archive <?php esc_attr_e($args['class']); ?>"> <?php $event = $event instanceof Eab_EventModel ? $event : new Eab_EventModel($event); ?> <article class="eab-event <?php echo eab_call_template('get_status_class', $event); ?>" id="eab-event-<?php echo $event->get_id(); ?>"> <div class="event-listing"> <span class="event-listing-thumbnail"><?php echo $event->get_featured_image(); ?></span> <span class="event-listing-title"><?php echo $event->get_title(); ?></span> <span class="event-listing-meta"><?php echo eab_call_template('get_archive_content', $event); ?></span> <span class="event-listing-excerpt"><?php echo $event->get_excerpt_or_fallback(300); ?></span> </div> </article> </section> <?php } } else { ?> <!-- <p><img src="http://XXXXXXX.org/resources/wp-content/uploads/sites/23/2016/08/MMCollage.jpg" width="200" class="alignleft size-thumbnail">There are no upcoming webinars listed at this time. Please browse the tabs on this page for other webinars that may be of interest to you, and check back soon.</p><p> We present a webinar every month, so it will be posted soon.</p> --> <?php } ?>