xmitter-11ty/archive.njk
Mathias Bynens 8b66ea9bea Add archives page
Blogs commonly only display the latest `n` blog posts on the home page, while showing the full list on a separate archive page. This change implements that.
2018-09-19 17:13:28 +02:00

13 lines
192 B
Plaintext

---
layout: layouts/home.njk
tags:
- nav
navtitle: Archive
permalink: posts/index.html
---
<h1>Blog post archive</h1>
{% set postslist = collections.posts %}
{% include "postslist.njk" %}