blob: 4781fd678ac38d8eaa6c8d5023627150e0201af5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
layout: blog
title: Theatrical Credits
description: Mostly for my own reference, here’s a list of shows I’ve worked on.
---
<h1>Theatrical Credits</h1>
<table class="fancy-table">
{% for show in site.data.shows %}
<tr>
<td><i>{{ show.name }}</i></td>
<td>{{ show.role }}</td>
<td>{{ show.person }}</td>
<td class="text-right">{{ show.date }}</td>
</tr>
{% endfor %}
</table>
|