-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathincomplete.html
More file actions
20 lines (18 loc) · 848 Bytes
/
Copy pathincomplete.html
File metadata and controls
20 lines (18 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
layout: page_default
title: Incomplete Transcripts
---
<p>Some of these episodes may already be partially-transcribed <a href="https://drive.google.com/drive/folders/1EIFIx7OztYBW3DUcalbLz7vBGFQwJ48U">in this publicly-editable Google Docs folder</a>; those linked below can be also be downloaded in Markdown format from their archive pages.</p>
<table class="toc-table">
<tbody>
{% assign episodes = site.posts | where: "categories", "incomplete" | reverse %}
{% for post in episodes %}
<tr>
{% assign url = post.url | prepend: site.baseurl %}
<td class="ep-number"><a href="{{ url }}">{{ post.episode_number | escape }}</a></td>
<td class="ep-title"><a href="{{ url }}">{{ post.episode_title | escape }}</a></td>
<td class="ep-date"><a href="{{ url }}">{{ post.date | date: "%Y-%m-%d" }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>