Create gutenberg templates

This commit is contained in:
Philipp Oppermann
2017-05-02 08:49:50 +02:00
parent d109912798
commit 168b598901
6 changed files with 158 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{% extends "base.html" %}
{% import "macros.html" as macros %}
{% block title %}{{ section.title }} | {{ config.title }}{% endblock title %}
{% block main %}
<h1>{{ section.title }}</h1>
{% block introduction %}{% endblock introduction %}
<div class="posts neutral">
{% for page in section.pages %}
{{ macros::post_link(page=page) }}
{% endfor %}
</div>
{% endblock main %}