use gutenberg and render anleitungen

This commit is contained in:
Paul Spooren 2018-01-15 18:07:59 +01:00
parent 9141aced4e
commit 64db773f11
30 changed files with 152 additions and 254 deletions

14
templates/how-to.html Executable file
View file

@ -0,0 +1,14 @@
{% extends "index.html" %}
{% block title %}
<title>{{ page.title }} - {{ config.title }}</title>
{% endblock title %}
{% block content %}
{% set anleitungen = get_section(path="how-to/_index.md") %}
{% for page in anleitungen.pages %}
<li>
<a href="{{ get_url(path=page.path) }}" title="{{ page.title }}">{{ page.title }}</a>
</li>
{% endfor %}
{% endblock content %}