diff options
-rw-r--r-- | index.md | 2 | ||||
-rw-r--r-- | theatre.html | 27 | ||||
-rw-r--r-- | theatre/index.html | 18 |
3 files changed, 28 insertions, 19 deletions
@@ -7,7 +7,7 @@ title: Ben Burwell - [code (github)](https://github.com/benburwell) - [words](/posts/) -- [theatre](/theatre/) +- [theatre](/theatre.html) - [freebsd notes](/freebsd.html) - mail: anything you'd like @benburwell.com - pgp: `0x666112D967A36ECD` ([keybase][], [mit][]) 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> diff --git a/theatre/index.html b/theatre/index.html deleted file mode 100644 index fd53371..0000000 --- a/theatre/index.html +++ /dev/null @@ -1,18 +0,0 @@ ---- -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="text-right">{{ show.date }}</td> - </tr> - {% endfor %} -</table> |