templates/default/watch-landing.html.twig line 1

Open in your IDE?
  1. {% if clubsite or (editmode and document.path is defined and '/SeikoClub/' in document.path) %}
  2.     {% set _layout = 'seikoclub/layout.html.twig' %}
  3. {% else %}
  4.     {% set _layout = '@CoreShopFrontend/layout.html.twig' %}
  5. {% endif %}
  6. {% extends _layout %}
  7. {% block content %}
  8.     {% if editmode %}
  9.         <div style="height: 100px;">a</div>
  10.     {% endif %}
  11.     <div class="container">
  12.         <div class="magazine-landing-placeholder"></div>
  13.         {{ pimcore_areablock('watch-landing-block', {
  14.             'allowed' : ['watches-landing-banner','watch-landing', 'popular-watches', 'watches-news'],
  15.             'limits' : {
  16.                 'popular-watches': 1,
  17.                 'watches-landing-banner': 1,
  18.                 'watches-news': 1
  19.             },
  20.             'params': {
  21.             }
  22.         }) }}
  23.     </div>
  24. {% endblock %}
  25. {% block scripts %}
  26.     {{ parent() }}
  27.     {% do pimcore_head_script().appendFile(asset('js/watch-landing-banner.js')) %}
  28. {% endblock %}