forum/templates/theme/show.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

14 lines
358 B
Twig

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