18 lines
380 B
Twig
18 lines
380 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}{% trans %}titles.themes{% endtrans %}{% endblock %}
|
|
|
|
{% block body %}
|
|
|
|
<h1>{% trans %}titles.themes{% endtrans %}</h1>
|
|
<ul>
|
|
{% for theme in themes %}
|
|
<li>
|
|
<a href="{{ path('theme', { id: theme.id }) }}">
|
|
{{ theme.name }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|