forked from reudnetz/website
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
391 B
14 lines
391 B
{% 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 %}
|
|
|