Merge branch 'style-tags-table' into source

This commit is contained in:
Oliver Davies 2017-09-05 13:59:01 +01:00
commit 5724090448

View file

@ -16,22 +16,22 @@ generator:
<h2>"{{ page.tag }}"</h2>
<div class="table-responsive">
<table class="table table-striped">
<table class="w-100 ba b--moon-gray">
<thead>
<tr>
<th>Post Title</th>
<th>Date</th>
<tr class="striped--light-gray">
<th class="pa2">Post Title</th>
<th class="pa2 w5">Date</th>
</tr>
</thead>
<tbody>
{% for post in page.tag_posts %}
<tr>
<td>
<tr class="striped--light-gray">
<td class="pa2">
<a href="{{ post.url }}">
{{ post.title }}
</a>
</td>
<td>{{ post.date|date('j F Y') }}</td>
<td class="pa2">{{ post.date|date('j F Y') }}</td>
</tr>
{% endfor %}
</tbody>