diff options
author | Ben Burwell <bburwell1@gmail.com> | 2014-12-20 23:13:09 -0500 |
---|---|---|
committer | Ben Burwell <bburwell1@gmail.com> | 2014-12-20 23:13:09 -0500 |
commit | 6fa536f3268bf7bd4fd85df7fa78fbc4c67eaaa1 (patch) | |
tree | c4655d32bc67fddf0dae94660d23e6d3db749367 /theatre/index.html | |
parent | 53109fa5e1404c0f5cd4328135f5b5fd7c88b555 (diff) |
Working on some major changes
Diffstat (limited to 'theatre/index.html')
-rw-r--r-- | theatre/index.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/theatre/index.html b/theatre/index.html new file mode 100644 index 0000000..71d4067 --- /dev/null +++ b/theatre/index.html @@ -0,0 +1,18 @@ +--- +layout: master +title: Theatrical Credits +description: Mostly for my own reference, here’s a list of shows I’ve worked on. +--- + +<h1>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="right">{{ show.date }}</td> + </tr> + {% endfor %} +</table> |