templates/home/page/_generic-page.html.twig line 1

Open in your IDE?
  1. {% extends 'index.html.twig' %}
  2. {% block metas %}
  3.     {% if metas.meta_title is defined %}
  4.         <title>{{ metas.meta_title }}</title>
  5.     {% endif %}
  6.     {% if metas.meta_description is defined %}
  7.         <meta name="description" content="{{ metas.meta_description }}">
  8.     {% endif %}
  9. {% endblock %}
  10. {% block content %}
  11.     {% set index = 0  %}
  12.    {%
  13.         set excluded_template = {
  14.             1:'cursor.html.twig',
  15.             2:'newsletter.html.twig',
  16.         }
  17.     %}
  18.     {%  for key,block in blocks %}
  19.          {% set include = '/home/blocks/'~block.template %}
  20.          {% set no_margin_top ='' %}
  21.          {% set even ='' %}
  22.         {% if block.template not in excluded_template %}
  23.              {% include include  with { 'data' : block.data , 'even' : even, 'index' : index } %}
  24.         {% endif %}
  25.     {%  endfor  %}
  26. {% endblock %}