{% extends 'index.html.twig' %}
{% block metas %}
{% if metas.meta_title is defined %}
<title>{{ metas.meta_title }}</title>
{% endif %}
{% if metas.meta_description is defined %}
<meta name="description" content="{{ metas.meta_description }}">
{% endif %}
{% endblock %}
{% block content %}
{% set index = 0 %}
{%
set excluded_template = {
1:'cursor.html.twig',
2:'newsletter.html.twig',
}
%}
{% for key,block in blocks %}
{% set include = '/home/blocks/'~block.template %}
{% set no_margin_top ='' %}
{% set even ='' %}
{% if block.template not in excluded_template %}
{% include include with { 'data' : block.data , 'even' : even, 'index' : index } %}
{% endif %}
{% endfor %}
{% endblock %}