-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathevents.html
More file actions
31 lines (29 loc) · 821 Bytes
/
events.html
File metadata and controls
31 lines (29 loc) · 821 Bytes
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
---
title: Events
layout: default
---
{% assign current_time = "now" | date: "%s" %}
<h1 class="title is-2">Upcoming events</h1>
<div class="event-list">
{% for event_hash in site.data.events %}
{% assign event = event_hash[1] %}
{% assign end_time = event.end | date: "%s" %}
{% if end_time > current_time %}
{% assign upcoming_events = true %}
{% include event-box.html event=event %}
{% endif %}
{% endfor %}
{% if upcoming_events != true %}
<p>There are no upcoming events. Check back soon.</p>
{% endif %}
</div>
<h1 class="title is-2">Past events</h1>
<div class="event-list">
{% for event_hash in site.data.events %}
{% assign event = event_hash[1] %}
{% assign end_time = event.end | date: "%s" %}
{% if end_time <= current_time %}
{% include event-box.html event=event %}
{% endif %}
{% endfor %}
</div>