-
Notifications
You must be signed in to change notification settings - Fork 6
/
talks.html
44 lines (40 loc) · 1.41 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
---
layout: page
title: Talks
permalink: /talks/
show_in_header: ''
---
<div class="talks">
<h3 class="page-heading">Get Mauro speaking at your event.</h3>
<p>Here is the list of talks ready to be delivered. <a href="https://mauroservienti.typeform.com/to/luuJPw">Get in
touch</a> to arrange details.</p>
<div class="talks-list">
<div class="card-columns">
{% for talk in site.talks %}
<div class="card">
{% if talk.header_image %}
<img class="img-fluid card-img-top" alt="{{ talk.title }} header image" src="{{ talk.header_image | prepend: site.baseurl }}" />
{% endif %}
<div class="card-body">
<h3 class="card-title">
<a class="muted-link" href="{{ talk.url | prepend: site.baseurl }}">{{ talk.title }}</a>
</h3>
<hr class="h-splitter" />
<p class="card-text talk-synopsis">{{ talk.synopsis }}</p>
<p class="card-text">
<small class="text-muted">
<a href="{{ talk.url | prepend: site.baseurl }}">More information...</a>
</small>
</p>
<hr class="h-splitter" />
<p class="card-text talk-languages">Available in:
{% for lang in talk.languages %}
<span> {{ lang }}{% unless forloop.last %} |{% endunless %}</span>
{% endfor %}
</p>
</div>
</div>
{% endfor %}
</div>
</div>
</div>