templates/front/layout/front.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}
  3.     Welcome to FERME DE JETTE
  4. {% endblock %}
  5. {% block stylesheets %}
  6.     {{ encore_entry_link_tags('front') }}
  7. {% endblock %}
  8. {% block javascripts %}
  9.     {{ encore_entry_script_tags('front') }}
  10. {% endblock %}
  11. {% block bodyClass %}{% endblock %}
  12. {% block body %}
  13.     <div class="container-fluid">
  14.         {# {% set currentPath = path(
  15.             app.request.attributes.get('_route'),
  16.             app.request.attributes.get('_route_params')
  17.         )%} #}
  18.         {{ include('front/components/navbar.twig') }}
  19.         {{ include('front/components/flash-messages.twig') }}
  20.         {# {% if 
  21.             app.request.attributes.get('_route') is not same as "app_login" or
  22.             app.request.attributes.get('_route') is not same as "app_user_show"
  23.         %}
  24.             {{ include('front/components/slider.html.twig') }}
  25.         {% endif %} #}
  26.         {% block pageContent %}
  27.         {% endblock %}
  28. {#        {% elseif currentPath == "/login" %}#}
  29. {#            {{ include('security/login.html.twig') }}#}
  30. {#        {% endif %}#}
  31.     </div>
  32.     {{ include('front/components/footer.html.twig') }}
  33. {% endblock %}