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.
This commit is contained in:
Mathias Bynens
2018-09-19 16:52:49 +02:00
parent 4a517aecc1
commit 8b66ea9bea
3 changed files with 23 additions and 1 deletions

View File

@@ -4,5 +4,10 @@ tags:
- nav
navtitle: Home
---
{% set postslist = collections.posts %}
<h1>Latest 2 blog posts</h1>
{% set postslist = collections.posts | head(2) %}
{% include "postslist.njk" %}
<p>More posts can be found in <a href="/posts/">the blog archive</a>.</p>