10 lines
161 B
Text
10 lines
161 B
Text
---js
|
|
const eleventyNavigation = {
|
|
key: "all posts",
|
|
order: 2
|
|
};
|
|
---
|
|
<h1>all posts</h1>
|
|
|
|
{% set postslist = collections.posts %}
|
|
{% include "postslist.njk" %}
|