sfizz/docs/_includes/post-archive.html

14 lines
522 B
HTML
Raw Normal View History

2019-10-03 18:49:12 +02:00
<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>