Skip to content

Commit 08cc07f

Browse files
QuincyGowbmuenzenmeyer
authored andcommitted
bug fix to master for blog
blog.njk was deleted from the master which was causing an issue with merging the blog changes properly from issue #10
1 parent b406394 commit 08cc07f

File tree

1 file changed

+17
-0
lines changed
  • packages/docs/src/_includes/layouts

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)