blob: fe7567fa82fa1171dd52b6eb39a8db6a510129c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<div class="column">
{% for post in paginator.posts %}
<h1>
<a href="{{ site.baseurl }}{{post.url }}">
{{ post.title }}
</a>
</h1>
<h2>
{% capture month%}{{ post.date | date: "%b" }}{% endcapture %}
{{ site.data[site.active_lang].strings.date[month]}} {{ post.date | date: "%e, %Y" }}
</h2>
<span>
{{ post.excerpt }}
</span>
{% endfor %}
</div>
{% include pagination.liquid %}
|