10 lines
248 B
Text
10 lines
248 B
Text
---
|
|
layout: "base.njk"
|
|
rssUrl: "feed.xml"
|
|
---
|
|
{%- from "components/collectionList.njk" import collectionList with context -%}
|
|
<main data-pagefind-body>
|
|
{{ content | safe }}
|
|
<h2>Recent posts</h2>
|
|
{{ collectionList("posts", limit=5) }}
|
|
</main>
|