templates/beautytada/index.twig line 1

Open in your IDE?
  1. {% extends 'beautytada/layout.twig' %}
  2. {% block stylesheets %}
  3.     {{ parent() }}
  4.     {{ encore_entry_link_tags('index') }}
  5. {% endblock %}
  6. {% block javascripts %}
  7.     {{ parent() }}
  8.     {{ encore_entry_script_tags('index') }}
  9. {% endblock %}
  10. {% block content %}
  11.     <script>
  12.         WINDOW_CONFIG['apiSearchStoreByPostcode'] = "{{ path('api_v1_search_stores_by_postcode') }}"
  13.     </script>
  14.     <div id="home-page">
  15.         {% include 'beautytada/page/index/banner.twig' %}
  16.         {% include 'beautytada/page/index/how-works.twig' %}
  17.         {% include 'beautytada/page/index/mobile-app.twig' %}
  18.         {% include 'beautytada/page/index/our-network.twig' %}
  19.     </div>
  20. {% endblock %}