presentations/source/_layouts/default.html.twig

12 lines
234 B
Twig
Raw Normal View History

2021-09-07 12:57:39 +01:00
{% extends 'app' %}
{% block body %}
2021-09-07 13:01:41 +01:00
<nav>
{% for link in site.main_menu %}
<a href="{{ link.href }}">{{ link.title }}</a>
{% endfor %}
</nav>
2021-09-07 12:57:39 +01:00
{% block content %}{% endblock %}
{% endblock %}