This repository was archived by the owner on Oct 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteam.html
42 lines (37 loc) · 1.45 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
---
title: EuRuKo 2018 | Team
permalink: /team/
layout: default
---
<link rel="stylesheet" href="{{ '/assets/css/speakers.css?v=' | append: site.github.build_revision | relative_url }}" media="print,screen">
<content>
<section>
<view column class="layout-wrapper">
<h1 class="c-red" style="margin-bottom: 60px;">
Team
</h1>
<div class="speakers-table h-flex-wrap">
{% for organiser in site.data.team %}
<div class="tile">
<div row>
<img src="/assets/images/team/{{ organiser.photo }}" />
<div column style="padding: 10px 20px;">
<span class="name">{{ organiser.name }}</span>
<span class="talk-name">{{ organiser.role }}</span>
</div>
</div>
<p class="description">
{{ organiser.bio }}
{% if organiser.url %}
<br /><a href="{{ organiser.url }}">{{ organiser.url }}</a>
{% endif %}
{% if organiser.twitter %}
<br /><a href="{{ organiser.twitter }}">{{ organiser.twitter }}</a>
{% endif %}
</p>
</div>
{% endfor %}
</div>
</view>
</section>
</content>