-
Notifications
You must be signed in to change notification settings - Fork 2
/
presentations.html
29 lines (26 loc) · 1.25 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
---
layout: page
title: Presentations & Demos
---
<h3>Demos</h3>
<ul>
{% for demo in site.data.demos %}
<li>{% if demo.url %}<a href="{{ demo.url }}">{% endif %}{{ demo.title }}.{% if demo.url %}</a>{% endif %}</li>
{% endfor %}
</ul>
<h3>Upcoming Presentations</h3>
<ul>
{% for presentation in site.data.upcoming_presentations %}
{% if presentation.date %}
<li>{{ presentation.date | date: "%b %-d, %Y" }}. {{ presentation.presenters | join: "; " }}. “{% if presentation.url %}<a href="{{ presentation.url }}">{% endif %}{{ presentation.title }}.{% if presentation.url %}</a>{% endif %}” {{ presentation.event }}{% if presentation.location %} ({{presentation.location}}){% endif %}.</li>
{% else %}
<li>{{ presentation.title }}</li>
{% endif %}
{% endfor %}
</ul>
<h3>Presentations</h3>
<ul>
{% for presentation in site.data.previous_presentations %}
<li>{{ presentation.date | date: "%b %-d, %Y" }}. {{ presentation.presenters | join: "; " }}. “{% if presentation.url %}<a href="{{ presentation.url }}">{% endif %}{{ presentation.title }}.{% if presentation.url %}</a>{% endif %}” {{ presentation.event }}{% if presentation.location %} ({{presentation.location}}){% endif %}.</li>
{% endfor %}
</ul>