forked from samvera-labs/hyku.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
presentations.html
22 lines (20 loc) · 1.04 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
---
layout: page
title: Presentations
---
<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>Previous 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>