-
Notifications
You must be signed in to change notification settings - Fork 0
/
arkiv.html
41 lines (40 loc) · 1012 Bytes
/
arkiv.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
36
37
38
39
40
41
---
permalink: /arkiv/index.html
layout: default
---
{% assign postsByYear = site.posts | group_by_exp: 'post', "post.date | date: '%Y'" %}
{% for year in postsByYear %}
<h2>{{ year.name }}</h2>
{% assign postsByMonth = year.items | group_by_exp: 'post', "post.date | date: '%B'" %}
{% for month in postsByMonth %}
<h3>
{% case month.name %}
{% when 'January' %}
Januar
{% when 'February' %}
Februar
{% when 'March' %}
Mars
{% when 'April' %}
April
{% when 'May' %}
Mai
{% when 'June' %}
Juni
{% when 'July' %}
Juli
{% when 'August' %}
August
{% when 'September' %}
September
{% when 'October' %}
Oktober
{% when 'November' %}
November
{% when 'December' %}
Desember
{% endcase %}
</h3>
{%- include post-cards.html posts=month.items -%}
{% endfor %}
{% endfor %}