blob: 0edf42d3c027cc147082c2614fe73a0c6ebaafdc (
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
|
---
title: Theatrical Credits
redirect_from: /theatre/
---
<h1><a href="/">Ben Burwell</a>'s Theatrical Credits</h1>
<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>
|