templates/web/pages/home.html.twig line 1

Open in your IDE?
  1. {% extends '@web/layout.html.twig' %}
  2. {% block title %}{{ page.metaTitle }}{% endblock %}
  3. {% block stylesheets %}
  4.     <link rel="stylesheet" href="{{ asset('assets/vendor/owl-carousel-2.3.4/css/owl.carousel.min.css') }}">
  5.     <link rel="stylesheet" href="{{ asset('assets/vendor/owl-carousel-2.3.4/css/owl.theme.default.min.css') }}">
  6.     {{ encore_entry_link_tags('web_home') }}
  7. {% endblock %}
  8. {% block body %}
  9.     <div class="page page-home" data-page="home">
  10.         {# HEADER #}
  11.         {% include '@web/header.html.twig' %}
  12.         {% include '@web/sections/section_carousel_hero.html.twig'
  13.             with { 'data' : components|filter(r=>r.slug == 'section-slider') | first }
  14.             only 
  15.         %}
  16.         {% include '@web/sections/section_page_hero.html.twig'
  17.             with { 
  18.                 'data' : page,
  19.                 'callToAction': components|filter(r=>r.slug == 'call-to-action-about') | first 
  20.                 }
  21.             only 
  22.         %}
  23.         {% include '@web/sections/section_last_realisations.html.twig'
  24.             with { 'data' : components|filter(r=>r.slug == 'section-realisations') | first }
  25.             only 
  26.         %}
  27.         {% include '@web/sections/section_prestations.html.twig'
  28.             with { 'data' : components|filter(r=>r.slug == 'section-prestations') | first }
  29.             only 
  30.         %} 
  31.         
  32.         {# {% if meta_data.blogArticlesCount > 0 %}
  33.             {% include '@web/sections/section_last_news.html.twig'
  34.                 with { 'data' : components|filter(r=>r.slug == 'section-actualites') | first }
  35.                 only %}
  36.         {% endif %} #}
  37.         {# FOOTER #}
  38.         {% include '@web/footer.html.twig' %}
  39.     </div> {# /.page #}
  40. {% endblock %}
  41. {% block javascripts %}
  42.     <script src="{{ asset('assets/vendor/jquery-3.3.1/js/jquery.min.js') }}"></script>
  43.     <script src="{{ asset('assets/vendor/owl-carousel-2.3.4/js/owl.carousel.min.js') }}"></script>
  44.     {{ encore_entry_script_tags('web_home') }}
  45. {% endblock %}