templates/client_activate/layout.html.twig line 1

Open in your IDE?
  1. {% extends 'home.html.twig' %}
    {% if form is defined %}
        {% form_theme form 'Form/fields.html.twig' %}
    {% endif %}
    {% set responsive = getParam('template.isResponsive') %}
    {% set menuLateral = getParam('template.menuLateral') %}
    {% block body %}
    {% endblock %}
    {% block footer %}
        {% if getParam('template.footer') %}
            <div class="row">
                {% include 'footer.html.twig' %}
            </div>
        {% endif %}
    {% endblock %}