website/templates/how-to.html

12 lines
316 B
HTML
Executable file

{% extends "page.html" %}
{% block content %}
{{ page.content | safe }}
{% 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 %}