forum/templates/theme/index.html.twig
sluppyy e1937c9e82
Some checks are pending
CI / Tests (push) Waiting to run
CI / Docker Lint (push) Waiting to run
init
2025-02-13 13:39:42 +03:00

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 %}