blob: d28127593ce8cb1e92dcdc99865a9052cf8446ff (
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 class="text-center">Theatrical Credits</h1>
<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>
|