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.
14 lines
248 B
Plaintext
14 lines
248 B
Plaintext
---
|
|
layout: layouts/home.njk
|
|
tags:
|
|
- nav
|
|
navtitle: Home
|
|
---
|
|
|
|
<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>
|