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.

13 lines
253 B

{% extends 'partials/base.html.twig' %}
{% block content %}
{{ page.content }}
<ul>
{% for p in page.collection() %}
<li><a href="{{ p.url }}" title="{{ p.title }}">{{ p.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}