13 lines
522 B
HTML
13 lines
522 B
HTML
<table class="table table-striped">
|
|
<caption>Full historical listing of all news posts, sorted by newest first.</caption>
|
|
<thead><tr><th>Post</th><th>Date</th></tr></thead>
|
|
<tbody>
|
|
{% for post in site.posts %}
|
|
<tr>
|
|
<td><a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a></td>
|
|
<td><time datetime="{{ post.date | datetime | date_to_xmlschema }}" pubdate{%-if updated-%}
|
|
data-updated="true"{%-endif-%}>{{ post.date | date: page.date_fmt }}</time></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|