forked from duffleit/duffleit.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
talks.html
69 lines (67 loc) · 2.26 KB
/
talks.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
---
layout: page
title: About
---
<section class="talks">
<div class="container">
<div class="row">
<div class="col-12">
<h1>Talks</h1>
<p class="top-text">
I <b>love conferences</b>, either as a visitor, speaker or even as
<a href="http://agiletourvienna.at">organizer</a>. Here you can find
some of the talks i gave over the last years:
</p>
<div class="talk-list">
{% for talk in site.data.talks %}
<div class="talk row">
<div class="talk-cover col-md-6">
<script
async
class="speakerdeck-embed"
data-id="{{ talk.speakerdeck-id }}"
data-ratio="1.77777777777778"
src="//speakerdeck.com/assets/embed.js"
></script>
</div>
<div class="talk-description col-md-6">
<h2>{{ talk.title }}</h2>
<div>
<i class="fa fa-compass"></i> <b>Location: </b
>{{ talk.location }}
</div>
<div>
<i class="fa fa-calendar-o"></i> <b>Date: </b
>{{ talk.date | date_to_long_string }}
</div>
<div class="talk-buttons">
{% if talk.slides %}<a
href="{{ talk.slides }}"
target="_blank"
class="button"
><i class="fa fa-comments-o"></i>Slides</a
>{% endif %} {% if talk.event %}<a
href="{{ talk.event }}"
target="_blank"
class="button"
><i class="fa fa-link"></i>Event</a
>{% endif %} {% if talk.video %}<a
href="{{ talk.video }}"
target="_blank"
class="button"
><i class="fa fa-youtube-play"></i>Video</a
>{% endif %} {% if talk.source %}<a
href="{{ talk.source }}"
target="_blank"
class="button"
><i class="fa fa-github"></i>Source</a
>{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</section>