blob: 07425cc75d38856852f9db41c1d8ba670370fec5 (
plain)
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
|
---
title: Tech Theatre
redirect_from: /theatre/
---
<h1>Tech Theatre</h1>
<p>I did a bunch of theatre tech, particularly lighting and sound, throughout
high school and college. Mostly for my own benefit, I’ve recorded it here.</p>
<table>
<thead>
<tr>
<th>Show</th>
<th>Role</th>
<th>Date</th>
</tr>
</thead>
<tbody>
{% for show in site.data.shows %}
<tr>
<td><i>{{ show.name }}</i></td>
<td>{{ show.role }}</td>
<td>{{ show.date }}</td>
</tr>
{% endfor %}
</tbody>
</table>
|