blob: 897974e18c75365d066d14e156323ba221586be2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<div class="articles">
<table class="posts-table">
{% assign posts = site.archive | sort: 'date' | reverse %}
{% for post in posts limit: include.limit %}
<tr>
<td class="posts-td posts-td-link">
<a href="{{ post.url }}">{{ post.title }}</a>
</td>
<td class="posts-td posts-td-time">
<span class="post-meta">
<time datetime="{{ post.date }}">{{ post.date | date: "%Y-%m-%d" }}</time>
</span>
</td>
</tr>
{% endfor %}
</table>
</div>
|