{# This is the base template used as the application layout which contains the common elements and decorates all the other templates. See https://symfony.com/doc/current/book/templating.html#template-inheritance-and-layouts #} {% if block('title') is defined %}{{ block('title')|striptags }}{% endif %} {% block stylesheets %} {% endblock %} {% block metadata %} {% endblock %}
{% block header %} {% endblock %}
{% block body %} {% endblock %}
{% block footer %} {% endblock %} {% include "@TigrisBase/decorators/_vue_dialog.html.twig" %}
{% block javascripts %} {% set domains = "default" %} {% if is_granted("ROLE_ADMIN") %}{% set domains = domains ~ ',admin' %}{% endif %} {% endblock %}