blob: 1b8c9c9f7c320340f189a0914ddaf796dc44f7e7 (
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 }}" class="link-decor-none">{{ 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>
|