diff --git a/11ty/_includes/layouts/about.njk b/11ty/_includes/layouts/about.njk new file mode 100644 index 000000000..d9c769955 --- /dev/null +++ b/11ty/_includes/layouts/about.njk @@ -0,0 +1,20 @@ +{% extends 'layouts/base.njk' %} +{% set pageType = 'Page' %} +{% set titleWithPath = title + ' « About « ' %} +{% block pageStyles %} + {# Code highlighting #} + +{% endblock %} +{% block content %} +
+ {% include 'components/sub-page-header.njk' %} +
+ {%- if parent -%} +
+ {{ parent.title }} +
+ {% endif %} +

{{ title }}

+ {{ content | safe }} +
+ {% endblock %} diff --git a/11ty/_includes/layouts/base.njk b/11ty/_includes/layouts/base.njk index a1e79b73c..aa0c0aa5c 100644 --- a/11ty/_includes/layouts/base.njk +++ b/11ty/_includes/layouts/base.njk @@ -22,6 +22,7 @@