-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.html
54 lines (48 loc) · 1.65 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
layout: default
title: Events
permalink: /events/
---
<section class="header header-11 overlay">
<div class="background-image-holder">
<img alt="Background Image" class="background-image" src="/assets/img/bg/divider6.jpg">
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h2 class="text-white">0x375</h2>
<h5 class="text-white">{{ page.title }}</h5>
</div>
</div>
</div>
</section>
{% for event in site.events reversed %}
<section class="pricing pricing-5 {% cycle 'bg-', 'bg-secondary' %}">
<div class="container">
<div class="row v-align-children">
<div class="col-md-4 text-center">
<div class="pricing-option">
<!-- <h6>0x375</h6> -->
<div class="price-container">
<span class="price">{{ event.title }}</span>
</div>
<h5>{{ event.date | date: "%b %-d, %Y" }} @{{ event.location}}</h5>
<a class="btn btn-filled" href="{{ event.url | prepend: site.baseurl }}">event details</a>
</div>
</div>
<div class="col-md-8">
{% for presentation in event.presentations %}
<div class="feature">
<i>{{ presentation.date | date: "%H:%M" }}</i>
<div class="inner">
<h6>{{ presentation.title }}</h6>
<p>{{ presentation.description }}</p>
<p><em>— {% if presentation.author.twitter %}<a href="https://twitter.com/{{ presentation.author.twitter }}" target="_blank">{{ presentation.author.name }}</a>{% else %}{{ presentation.author.name }}{% endif %}</em></p>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</section>
{% endfor %}