-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathsources.html
More file actions
36 lines (34 loc) · 1.19 KB
/
Copy pathsources.html
File metadata and controls
36 lines (34 loc) · 1.19 KB
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
---
layout: page_default
title: Transcript Sources
---
<p>Any transcripts on this site not listed below were sourced from <a href="https://drive.google.com/drive/folders/0BzWtYJgwf5A9NU1Vd0pMTG9HcmM">the Rusty Quill's official transcript archive</a>. (Unless I let this page get out-of-date; please <a href="mailto:{{site.email}}">let me know</a> if something looks wrong!)</p>
{% for source in site.data.sources %}
<h3>
{%- if source.url -%}
<a target="_blank" href="{{source.url}}" name="{{source.name}}">{{source.name}}</a>
{%- else -%}
{{source.name}}
{%- endif -%}:
</h3>
<table class="toc-table sources-table">
<tbody>
{%- for episode in source.episodes %}
{%- capture ep_path -%}{{site.baseurl}}
{%- if episode.path -%}
{{episode.path}}
{%- else -%}
/episode/{{episode.number}}.html
{%- endif -%}
{%- endcapture -%}
<tr>
<td class="ep-number"><a href="{{ep_path}}">{{episode.number}}</a></td>
<td class="ep-title"><a href="{{ep_path}}">{{episode.title}}</a></td>
<td class="ep-source">{% if episode.url -%}
<a target="_blank" href="{{episode.url}}">Source</a>
{%- endif %}</td>
</tr>
{%- endfor %}
</tbody>
</table>
{% endfor %}