{% extends 'base.html.twig' %}
{% block title %}
Welcome to FERME DE JETTE
{% endblock %}
{% block stylesheets %}
{{ encore_entry_link_tags('front') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('front') }}
{% endblock %}
{% block bodyClass %}{% endblock %}
{% block body %}
<div class="container-fluid">
{# {% set currentPath = path(
app.request.attributes.get('_route'),
app.request.attributes.get('_route_params')
)%} #}
{{ include('front/components/navbar.twig') }}
{{ include('front/components/flash-messages.twig') }}
{# {% if
app.request.attributes.get('_route') is not same as "app_login" or
app.request.attributes.get('_route') is not same as "app_user_show"
%}
{{ include('front/components/slider.html.twig') }}
{% endif %} #}
{% block pageContent %}
{% endblock %}
{# {% elseif currentPath == "/login" %}#}
{# {{ include('security/login.html.twig') }}#}
{# {% endif %}#}
</div>
{{ include('front/components/footer.html.twig') }}
{% endblock %}