-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
72 lines (51 loc) · 1.93 KB
/
events.html
File metadata and controls
72 lines (51 loc) · 1.93 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
layout: default
title: Events
section_id: events
---
<div class='full parallax' style='background-image: url(images/headers/overhead.jpg); color: #fff;'>
<div class='row'>
<div class='large-12 columns'>
{% include section-header.html title="Events" tagline="" color="#fff" class="big" %}
</div>
</div>
<div class='four spacing'></div>
</div>
<div class='full'>
<div class='row'>
<div class='large-12 columns'>
<h2>A week of events exploring our theme</h2>
<p class='header-line'>Inter/sections discusses this year's theme, Politics and Ethics in Media and Arts Technology, through a week-long series of events.</p>
<p>Find out what's going on each day on this page, or click the button below to download a daily schedule as a PDF.</p>
<a href="downloads/intersections_schedule.pdf" class="button-link">Download a schedule (PDF).</a>
</div>
</div>
</div>
<div class="full">
<div class="row">
<div class='medium-12 columns'>
{% for event in site.data.events %}
<div class='row events-section'>
<div class='small-5 medium-3 columns people'>
<img class="avatar team-pic" alt="" src="{{ site.url }}/images/events/{{ event.image }}" />
</div>
<div class='small-7 medium-9 columns'>
<h2 class='name'>{{event.name}}</h2>
<div class='event-tags'>
{% for tag in event.tags %}
<p class='{{ tag }}'>{{ tag }}</p>
{% endfor %}
</div>
<p class='pos'>{{event.date}}<br \>{{ event.time}}</p>
<p class='bio'>{{event.desc}}</p>
{% if event.button-url %}
<div class="button-wrapper"><a href="{{ event.button-url }}" class="button-link register-now">{{ event.button-text }}</a></div>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
<div class='four spacing'></div>
{% include our-supporters.html %}
</div><!-- end full -->