summaryrefslogtreecommitdiff
path: root/theatre.html
diff options
context:
space:
mode:
Diffstat (limited to 'theatre.html')
-rw-r--r--theatre.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/theatre.html b/theatre.html
new file mode 100644
index 0000000..ae09487
--- /dev/null
+++ b/theatre.html
@@ -0,0 +1,27 @@
+---
+layout: master
+title: Theatrical Credits
+permalink: /theatre.html
+redirect_from: /theatre/
+---
+
+<h1>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>