forked from Snarp/magnus_archives_transcripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsources.html
More file actions
29 lines (26 loc) · 1.06 KB
/
Copy pathsources.html
File metadata and controls
29 lines (26 loc) · 1.06 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
---
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>
<div class="table-of-contents source-index">
{% for source in site.data.sources %}
<h3 class="ep-transcriber">
{%- if source.url -%}
<a target="_blank" href="{{source.url}}" name="{{source.name}}">{{source.name}}</a>:
{%- else -%}
<a name="{{source.name}}">{{source.name}}</a>:
{%- endif -%}
</h3>
<ul>
{%- for episode in source.episodes %}
<li>
<div class="ep-left"><a class="ep-title" href="episode/{{episode.number}}.html">{{episode.number}} {{episode.title}}</a></div>
{%- if episode.url %}
<div class="ep-right"><a class="ep-source" target="_blank" href="{{episode.url}}">Source</a></div>
{%- endif %}
</li>
{%- endfor %}
</ul>
{%- endfor %}
</div>