templates/theme/default/index.html.twig line 1

Open in your IDE?
  1. {% extends "theme/"~ app.request.server.get('APP_THEME') ~"/partials/base.html.twig" %}
  2. {% block stylesheets %}
  3. {{parent()}}
  4. {% endblock %}
  5. {% block custom_class %}{{"home"}}{% endblock %}
  6. {% block body %}
  7. <div class="index-page">
  8. {% if galleries and galleries is not empty and twig_galerie is defined and twig_galerie is not empty %}
  9. {{ include(template_from_string(twig_galerie)) }}
  10. {% endif %}
  11. {% if blocs is defined %}
  12. {{ include ('theme/'~ app.request.server.get('APP_THEME') ~'/partials/bloc_render.html.twig',{blocs: blocs}, with_context = false)}}
  13. {% endif %}
  14. </div>
  15. {% endblock %}
  16. {% block javascripts %}
  17. {{parent()}}
  18. {% endblock %}