We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b406394 commit 08cc07fCopy full SHA for 08cc07f
packages/docs/src/_includes/layouts/blog.njk
@@ -0,0 +1,17 @@
1
+{% extends 'layouts/base.njk' %}
2
+{% set pageType = 'Post Archive' %}
3
+
4
+{# Intro content #}
5
+{% set introHeading = title %}
6
+{% set introSummary %}{{ content | safe }}{% endset %}
7
8
+{# Post list content #}
9
+{% set postListHeading = 'All posts' %}
10
+{% set postListItems = collections.posts %}
11
12
+{% block content %}
13
+ <main id="main-content">
14
+ {% include "partials/components/intro.njk" %}
15
+ {% include "partials/components/post-list.njk" %}
16
+ </main>
17
+{% endblock %}
0 commit comments