15 lines
No EOL
422 B
HTML
15 lines
No EOL
422 B
HTML
---
|
|
layout: archive
|
|
permalink: /year-archive/
|
|
title: "Posts by Year"
|
|
---
|
|
{% include absolute-url.liquid %}
|
|
{% capture written_year %}'None'{% endcapture %}
|
|
{% for post in site.posts %}
|
|
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
|
|
{% if year != written_year %}
|
|
<h3>{{ year }}</h3>
|
|
{% capture written_year %}{{ year }}{% endcapture %}
|
|
{% endif %}
|
|
{% include post-single.html %}
|
|
{% endfor %} |