templates/areas/watch-landing/view.html.twig line 1

Open in your IDE?
  1. {% if editmode %}
  2.     <div style="display:flex;gap:20px">
  3.         <div>
  4.             <h6 class="banner-style">Szöveg elhelyezkedése</h6>
  5.             {{ pimcore_select("layout", {
  6.                 "store": [
  7.                     ["left", "Balra"],
  8.                     ["right", "Jobbra"],
  9.                 ],
  10.                 "defaultValue" : "left",
  11.                 "reload": true
  12.             }) }}
  13.             <h6 class="banner-style">Hír hozzákapcsolása </h6>
  14.             {{ pimcore_relation("additional_news", {
  15.                 "types": ["object"],
  16.                 "subtypes": {
  17.                     "object": ["object"]
  18.                 },
  19.                 "classes": ["News"]
  20.             }) }}
  21.         </div>
  22.         <div style="">
  23.             <h6 class="banner-style">ÓRA MOBILE KÉP</h6>
  24.             {{ pimcore_image('watch-mobile-example', {'reload':true}) }}
  25.         </div>
  26.     </div>
  27. {% endif %}
  28. <div class="row row-custom-padding justify-content-center contact-container" style="margin: auto">
  29.     {% if pimcore_select('layout').getData() == 'right' %}
  30.         {% include 'areas/watch-landing/_image.html.twig' %}
  31.         {% include 'areas/watch-landing/_text.html.twig' %}
  32.     {% else %}
  33.         {% include 'areas/watch-landing/_text.html.twig' %}
  34.         {% include 'areas/watch-landing/_image.html.twig' %}
  35.     {% endif %}
  36. </div>