website/templates/how-to.html

12 lines
316 B
HTML
Raw Normal View History

{% extends "page.html" %}
2018-01-15 18:07:59 +01:00
{% block content %}
{{ page.content | safe }}
2018-01-15 18:07:59 +01:00
{% 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 %}