20 lines
548 B
HTML
20 lines
548 B
HTML
---
|
|
layout: "layouts/base"
|
|
permalink: /posts/index.html
|
|
title: Posts
|
|
---
|
|
|
|
{% from "macros/posts.njk" import list %}
|
|
<h1>All posts</h1>
|
|
<p>
|
|
Browse all of my posts, or narrow things down <a href="/tags">via tags</a>.
|
|
</p>
|
|
{% set itemsByYear = collections.post | reverse | organizeByDate %}
|
|
{% set years = itemsByYear | keys | sort("desc") %}
|
|
<section class="[ flow ]">
|
|
{% for year in years %}
|
|
{% set itemsInYear = itemsByYear[year] %}
|
|
<h2>{{ year }}</h2>
|
|
<div>{{ list(itemsInYear) }}</div>
|
|
{% endfor %}
|
|
</section>
|