templates/front/pages/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'front/layouts/base.html.twig' %}
  2. {% block title %}{{ metaTitle() ? metaTitle() :  'home page'  }} {% endblock %}
  3. {% block stylesheets %}
  4.     {{ parent() }}
  5.     {{ encore_entry_link_tags('app') }}
  6. {% endblock %}
  7. {% block body %}
  8.         {% include 'front/layouts/flashes.html.twig' %}
  9.         {# HEADER #}
  10.         {#{% if blocHeader is defined and blocHeader %}
  11.             {% include "front/bloc/isHeader.html.twig" %}
  12.         {% endif %}#}
  13.         {% for bloc in blocs %}
  14.             {% include "front/bloc/index.html.twig" %}
  15.         {% endfor %}
  16. {% endblock %}
  17. {% block javascripts %}
  18.     {{ parent() }} 
  19.     {{ encore_entry_script_tags('app') }}
  20. {% endblock %}