8b66ea9bea
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.
13 lines
192 B
Plaintext
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" %}
|