forked from hasgeek/events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (46 loc) · 1.17 KB
/
index.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
37
38
39
40
41
42
43
44
45
46
47
48
49
---
layout: base
---
<section class="hero is-medium is-primary is-bold">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title">
{{ site.title }}
</h1>
{% if site.subtitle %}
<h2 class="subtitle">
{{ site.subtitle }}
</h2>
{% endif %}
</div>
</div>
</section>
<section class="section">
<div class="container">
{% include assign_all_events.html %}
<div class="columns is-centered is-multiline">
{% for event in all_events %}
<div class="column is-one-third">
{% include event_card.html event=event featured=event.featured %}
</div>
{% endfor %}
</div>
</div>
</section>
{% include assign_past_events.html %}
{% if past_events != "" %}
<section class="section">
<div class="container">
<h1 class="title">Past Events</h1>
<hr>
<div class="columns is-centered is-multiline">
{% for event in past_events %}
<div class="column is-one-third">
{% include event_card.html event=event featured=event.featured %}
</div>
{% endfor %}
</div>
</div>
</section>
{% endif %}
{% include footer.html %}