1
0
Fork 0
forked from reudnetz/website
website/templates/how-to.html
Yannik 3695a29861 performance improvements:
* less redirects
* better font loading behaviour
2025-06-30 19:19:51 +02:00

11 lines
317 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 %}