blob: 5385d1fcba0a741711213bf606872c58996f70de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<table class="plainlink" width="100%">
<tr>
<th><a href="by-date" class="{% if include.sort == "date" %}sortcolumn{% endif %}">date</a></th>
<th><a href="by-title" class="{% if include.sort == "title" %}sortcolumn{% endif %}">title</a></th>
</tr>
{% assign posts = site.items | post_sort: include.sort %}
{% for post in posts %}
<tr>
<td>{{ post.date | datefmt }}</td>
<td><a href="{{ post.url }}">{{ post.title }}</a></td>
</tr>
{% endfor %}
</table>
|