summaryrefslogtreecommitdiff
path: root/theatre/index.html
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-08-11 22:59:47 -0400
committerBen Burwell <ben@benburwell.com>2015-08-11 22:59:47 -0400
commitd5560f3dd006cbb21c2ce2da9bbbe723b7fc2a2d (patch)
tree9989d0c958937611595666f0bafb8a1cdfef1bef /theatre/index.html
parent6b0fad5657d802603cb6f64f51b5387bbfbc2059 (diff)
parentaf51b0ef270746181e4d43626074f5b08bcaf9c3 (diff)
Merge pull request #6 from benburwell/use-primer-css
Use Tiny CSS
Diffstat (limited to 'theatre/index.html')
-rw-r--r--theatre/index.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/theatre/index.html b/theatre/index.html
index c10ab19..641c61f 100644
--- a/theatre/index.html
+++ b/theatre/index.html
@@ -6,13 +6,13 @@ description: Mostly for my own reference, here’s a list of shows I’ve worked
<h1>Theatrical Credits</h1>
-<table class="data-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 class="fancy-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>