-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.html
30 lines (26 loc) · 892 Bytes
/
archive.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
---
layout: default
title: KOPIS.DE - Alle Blogposts
description: Im Archiv findest Du alle Blogposts
featured_image: /images/44295403205_d82446e2dd_o.png
---
<section class="blog single">
<div class="wrap">
<h3>Dieses Jahr</h3>
{%for post in site.posts %}
{% unless post.next %}
<ul class="this">
{% else %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
{% if year != nyear %}
</ul>
<h3>{{ post.date | date: '%Y' }}</h3>
<ul class="past">
{% endif %}
{% endunless %}
<li><time>{{ post.date | date:"%d %b" }}</time> <a
href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></li>
{% endfor %}
</div>
</section>