This repository has been archived by the owner on Mar 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteam.html
80 lines (71 loc) · 1.96 KB
/
team.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
title: Team
layout: default
menu: footer
order: 1
team:
- who: James Titcumb
avatar: james.png
role: Conference Chair
twitter: asgrim
- who: Alex Ross
avatar: alex.jpg
role: Materials, print, design
twitter: rossey
- who: Gary Hockin
avatar: gary.jpg
role: Speaker Liaison
twitter: GeeH
- who: Dave Baker
avatar: dave.jpg
role: Business Development
twitter: fully_baked
- who: Lee Boynton
avatar: lee.jpg
role: Website
twitter: leeboynton
helpers:
- Ashley Pinner
- Chris Hoult
- Hannah Titcumb
- Lee Stone
---
<div id="main" class="team">
<div class="container">
<header>
<h2>Organisation Team</h2>
</header>
<p>
The organisation team are responsible for ensuring the smooth running of the conference. From making
bookings, signing contracts, ordering stationary, herding speakers, and keeping the website running, these
folks are part of the core organisation team.
</p>
<div class="row center-block">
{% for person in page.team limit: 4 %}
<div class="col-md-3 center">
{% include team-card.html %}
</div>
{% endfor %}
</div>
<div class="row">
{% for person in page.team limit: 4 offset: 4 %}
<div class="col-md-3 center">
{% include team-card.html %}
</div>
{% endfor %}
</div>
<header>
<h2>Volunteer Helpers</h2>
</header>
<p>
We also have a team of extremely dedicated and amazing helpers who are involved in decision making, the
blind speaker selection and making sure the conference itself goes without a hitch on the day. We are
immensely grateful to all of our team members!
</p>
<ul>
{% for person in page.helpers %}
<li>{{ person }}</li>
{% endfor %}
</ul>
</div>
</div>