-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathessays-talks.html
44 lines (40 loc) · 990 Bytes
/
essays-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
variant: list
permalink: /essays-talks
title: Essays & Talks
heading: Stephanie Mills Talks
images:
- src: portrait-under-oak
alt: Stephanie Mills
---
{% assign text = site.categories.essays-talks | where: "tags", "text" %}
{% assign audio = site.categories.essays-talks | where: "tags", "audio" %}
{% assign video = site.categories.essays-talks | where: "tags", "video" %}
<h2>Video</h2>
<ul>
{% for post in video %}
<li>
<h3><a href="{{ post.url }}">{{ post.title }} ({{ post.year }})</a></h3>
<p>{{ post.context }}</p>
</li>
{% endfor %}
</ul>
<h2>Audio</h2>
<ul>
{% for post in audio %}
<li>
<h3><a href="{{ post.url }}">{{ post.title }} ({{ post.year }})</a></h3>
<p>{{ post.context }}</p>
</li>
{% endfor %}
</ul>
<h2>Text</h2>
<ul>
{% for post in text %}
<li>
<h3><a href="{{ post.url }}">{{ post.title }} ({{ post.year }})</a></h3>
<p>{{ post.context }}</p>
</li>
{% endfor %}
</ul>