{% extends 'front/layouts/base.html.twig' %}
{% block title %}{{ metaTitle() ? metaTitle() : 'home page' }} {% endblock %}
{% block stylesheets %}
{{ parent() }}
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block body %}
{% include 'front/layouts/flashes.html.twig' %}
{# HEADER #}
{#{% if blocHeader is defined and blocHeader %}
{% include "front/bloc/isHeader.html.twig" %}
{% endif %}#}
{% for bloc in blocs %}
{% include "front/bloc/index.html.twig" %}
{% endfor %}
{% endblock %}
{% block javascripts %}
{{ parent() }}
{{ encore_entry_script_tags('app') }}
{% endblock %}