-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposts.html
35 lines (31 loc) · 1.18 KB
/
posts.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
layout: post-index
permalink: /posts/
title: Posts
description: "An archive of posts."
---
{% capture lang_url %}{% translate global.site.lang_url %}{% endcapture %}
{% capture short_date_format %}{% translate global.site.short_date_format %}{% endcapture %}
<div style='-webkit-columns: 2;-moz-columns: 2;columns: 2;'>
{% for post in site.posts %}
{% capture this_year %}{{ post.date | date: short_date_format }}{% endcapture %}
{% capture next_year %}{{ post.previous.date | date: short_date_format }}{% endcapture %}
{% if forloop.first %}
<article style="-webkit-column-break-inside: avoid;break-inside: avoid-column;">
<h2 id="{{ this_year }}-ref">{{ this_year }}</h2>
<ul>
{% endif %}
<li class="entry-title"><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li>
{% if forloop.last %}
</ul>
</article>
{% else %}
{% if this_year != next_year %}
</ul>
</article>
<article style="-webkit-column-break-inside: avoid;break-inside: avoid-column;">
<h2 id="{{ next_year }}-ref">{{next_year}}</h2>
<ul>
{% endif %}
{% endif %}
{% endfor %}