forked from osg-htc/osg-htc.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.html
36 lines (30 loc) · 998 Bytes
/
events.html
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
32
33
34
35
36
---
title: Event Page
layout: padded-default
---
<div class="container-xxl">
<h1>Events</h1>
</div>
<div class="bg-light">
<div class="container-xxl">
{% include get/future_events.html %}
{% if future_events.size != 0 %}
<div class="row my-4">
{% for event in future_events %}
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6 my-4">
{% include /cards/event-card.html news=event card_image=event.header_image height='150' %}
</div>
{% endfor %}
</div>
{% endif %}
{% include get/past_events.html %}
<h3 class="text-muted pt-3">Past Events</h3>
<div class="row">
{% for event in past_events %}
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6 mb-4">
{% include /cards/event-card.html news=event card_image=event.header_image height='150' %}
</div>
{% endfor %}
</div>
</div>
</div>