Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
77 lines (77 sloc)
2.41 KB
This file contains 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
<?php | |
include(locate_template('sections/params/events.php')); | |
$page_url = get_the_permalink(); | |
?> | |
<section <?php section_attr( $id, $slug, $events_classes ); ?> data-page="<?php echo $paged ?>"> | |
<?php get_template_part('partials/nav') ?> | |
<?php get_template_part('partials/side') ?> | |
<div class="content"> | |
<div class="wrapper upcoming"> | |
<h2 class="title head">Current and Upcoming Events & Exhibitions</h2> | |
<?php | |
$sorted_events = sort_upcoming_events(); | |
$count = sizeof( $sorted_events ); | |
if ( $count ): | |
echo '<div class="events shelves grid items residents upcoming">'; | |
foreach( $sorted_events as $event ): | |
$post = $event; | |
global $post; | |
get_template_part( 'sections/items/event' ); | |
endforeach; | |
echo '</div>'; | |
else: | |
get_template_part( 'partials/no-posts' ); | |
endif; | |
wp_reset_query(); | |
?> | |
</div> | |
<div class="wrapper past"> | |
<h2 class="title head">Past Events & Exhibitions</h2> | |
<div class="filter"> | |
<div class="bar"> | |
<div class="select link dropdown type" data-filter="type" data-slug="<?php echo $slug ?>"> | |
<?php | |
if( $event_type_param ): | |
$selected = ': ' . $event_type_param_title; | |
else: | |
$selected = null; | |
endif; | |
echo '<span class="label">Event Type</span><span class="value">' . $selected . '</span>'; | |
?> | |
<div class="swap"> | |
<div class="icon default"></div> | |
<div class="icon hover"></div> | |
</div> | |
</div> | |
<div class="select link dropdown year" data-filter="year" data-slug="<?php echo $slug ?>"> | |
<?php | |
if( $year_param ): | |
$selected = ': ' . $year_param; | |
else: | |
$selected = null; | |
endif; | |
echo '<span class="label">Year</span><span class="value">' . $selected . '</span>'; | |
?> | |
<div class="swap"> | |
<div class="icon default"></div> | |
<div class="icon hover"></div> | |
</div> | |
</div> | |
<div class="select link view toggle" data-slug="<?php echo $slug ?>"> | |
<span class="option list">List</span> | |
<span class="option grid">Grid</span> | |
<div class="swap"> | |
<div class="icon default"></div> | |
<div class="icon hover"></div> | |
</div> | |
</div> | |
</div> | |
<div class="filter-lists"> | |
</div> | |
</div> | |
<div class="events shelves filter-this grid items residents past" data-delay="<?php echo $delay ?>"> | |
</div> | |
</div> | |
</div> | |
<?php get_template_part('partials/footer') ?> | |
</section> |