-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpresentations.html
53 lines (51 loc) · 1.95 KB
/
presentations.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
---
layout: default
---
<div class="page-header">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="page-section">
<h1 class="page-title ">Presentations</h1>
<div class="page-breadcrumb">
Presentations conducted by the WRENCH team.
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 hidden-xs">
<div class="page-section">
<p>
<!-- ADD GENERAL TEXT ABOUT DOWNLOADS -->
</p>
</div>
</div>
</div>
</div>
</div>
<div class="space-small">
<div class="container">
<div class="row">
{% if site.data.presentations.size > 0 %}
{% for n in site.data.presentations %}
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="plan-block">
<div class="plan-header">
<h3>{{ n.title }}</h3>
</div>
<div class="plan-content">
<div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.1972%;">
<iframe src="https://speakerdeck.com/player/{{ n.player }}"
style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;"
allowfullscreen scrolling="no" allow="encrypted-media"></iframe>
</div>
<div style="text-align: right; padding-top: 0.3em; color: #999; font-size: 0.8em">
{{ n.date }}
</div>
</div>
</div>
</div>
{% endfor %}
{% endif %}
</div>
</div>
</div>