2023-10-27 18:04:23 +02:00
|
|
|
{% extends "page.html" %}
|
2018-01-15 18:07:59 +01:00
|
|
|
|
|
|
|
{% block content %}
|
2023-10-27 18:04:23 +02:00
|
|
|
{{ 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 %}
|