14 lines
358 B
Twig
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 %}
|