15 lines
591 B
HTML
15 lines
591 B
HTML
<ul class="archive">
|
|
{% for post in site.posts %}
|
|
{% unless post.next %}
|
|
<h3>{{ post.date | date: '%Y' }}</h3>
|
|
{% else %}
|
|
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
|
|
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
|
|
{% if year != nyear %}
|
|
<h3>{{ post.date | date: '%Y' }}</h3>
|
|
{% endif %}
|
|
{% endunless %}
|
|
<li><span class="date">{{ post.date | date:"%d. %b" }}</span> <a href="{{ post.url | prepend: site.baseurl | replace: '//', '/'}}">{{ post.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|