templates/bundles/SyliusShopBundle/Homepage/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block stylesheets %}
  3.     {{ parent() }}
  4.     {{ encore_entry_link_tags('sylius-shop-homepage-index') }}
  5. {% endblock %}
  6. {% block page_container %}
  7.     <article id="landing_sections" class="landing-sections">
  8.         <section id="slider">
  9.             {% include '@App/bundles/SyliusShopBundle/Homepage/sections/slider.html.twig' %}
  10.         </section>
  11.         {% if not is_mobile() %}
  12.             <section id="content_bar">
  13.                 <div class="position-fixed w-100">
  14.                     <div class="d-flex justify-content-end align-items-center hc-50 mr-5">
  15.                         {% include '@App/app/bar.html.twig' %}
  16.                     </div>
  17.                 </div>
  18.             </section>
  19.         {% endif %}
  20.         <section id="company_description" class="active">
  21.             {% include '@App/bundles/SyliusShopBundle/Homepage/sections/company_description.html.twig' %}
  22.         </section>
  23.         <section class="bg-title-grey" id="cards">
  24.             {% include '@App/bundles/SyliusShopBundle/Homepage/sections/cards.html.twig' %}
  25.         </section>
  26.         <section id="company_objectives">
  27.             {% include '@App/bundles/SyliusShopBundle/Homepage/sections/company_objectives.html.twig' with {'pageContents': pageContents} %}
  28.         </section>
  29.     </article>
  30. {% endblock %}
  31. {% block javascripts %}
  32.     {{ parent() }}
  33.     {{ encore_entry_script_tags('bar') }}
  34.     {{ encore_entry_script_tags('sylius-shop-homepage-index') }}
  35. {% endblock %}