forked from jacopo-massa/hpdc24-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeynotes.html
46 lines (44 loc) · 1.67 KB
/
keynotes.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
---
title: Keynotes
layout: page
slide_id: 9
---
<div class="row mt-xs-0 mt-sm-0 mt-md-1 mt-lg-2 mt-xl-3 mb-xs-2 mb-sm-2">
<div class="col text-justify conference">
<div>
<h2>Keynotes</h2>
{% if site.data.keynotes.keynotes %}
<br>
{% for keynote in site.data.keynotes.keynotes %}
<div class="row">
{% if keynote.image %}
<div class="col-3 mx-auto d-flex align-items-start justify-content-center">
<img src=" {{ keynote.image }}" alt="{{ keynote.title }}" width="60%"
class="border border-dark rounded">
</div>
{% endif %}
<div class="col-9">
<h3>{{ keynote.title }}</h3>
<h4 class="mb-2">by <i>{{ keynote.speaker }}</i></h4>
{% if keynote.role %}
<p class="mb-2">{{ keynote.role }}
{% endif %}
{% if keynote.affiliation %}
| <i>{{ keynote.affiliation }}</i>
{% endif %}
</p>
<p class="alert alert-info h6 lead">
<strong>Date:</strong> {{ keynote.date }} | <strong>Time:</strong> {{ keynote.time }}
</p>
<p><strong>Abstract:</strong><br> {{ keynote.abstract }}</p>
<p><strong>Bio:</strong><br> {{ keynote.bio }}</p>
</div>
</div>
<hr>
{% endfor %}
{% else %}
{% include tba.html %}
{% endif %}
</div>
</div>
</div>