-
Notifications
You must be signed in to change notification settings - Fork 1
/
presentations.html
46 lines (44 loc) · 1.96 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
---
layout: page
title: CI CoE Pilot - Presentations
permalink: /materials/presentations
---
<section id="intro">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 space">
<div class="section-title">
<h2>Presentations</h2>
</div>
<div class="col-md-12 col-sm-12 space" style="padding-top: 2em">
{% if site.data.presentations.size > 0 %}
{% for n in site.data.presentations %}
<div class="col-md-6 col-sm-6">
<div class="presentation"
style="border-left: 0.4em solid {% if n.color %} #{{ n.color }} {% else %} #ddcc00 {% endif %}">
<div class="date">
{{ n.date }}
</div>
{% if n.file %}
<a href="/presentations/{{ n.file }}" target="_blank"><strong>{{ n.title }}</strong></a>
{% elsif n.presentation_link %}
<a href="{{ n.presentation_link }}" target="_blank"><strong>{{ n.title }}</strong></a>
{% else %}
<strong>{{ n.title }}</strong>
{% endif %}
<br/>
<span class="author"><i class="fas fa-user"></i> {{ n.author }}</span><br/>
{{ n.venue }}
{% if n.video_link.size > 0 %}
<br/>
<a href="{{ n.video_link }}" target="_blank"><i class="fab fa-youtube"></i> Video Recording</a>
{% endif %}
</div>
</div>
{% endfor %}
{% endif %}
</div>
</div>
</div>
</div>
</section>