templates/document/about/distributors.html.twig line 1

Open in your IDE?
  1. {% extends 'layout/default.html.twig' %}
  2. {% block contentBlock %}
  3. <div class="staticPage">
  4.     <div class="container my-5 my-lg-5 my-md-5">
  5.         <div class="row">
  6.             <div class="col-lg-3">
  7.                 <h4 class="font-weight-bold text-uppercase">{{ 'About.pages.title' | trans }}</h4>
  8.                 {% include 'document/static_page/sidebar/sidebar.html.twig' %}
  9.             </div>
  10.             <div class="col-lg-9">
  11.                 <div class="mb-3 mb-lg-3 mb-md-3">
  12.                     <h1 class="font-italic font-weight-bold mb-0">
  13.                         {{ pimcore_input('heading',{
  14.                                 "height": 150,
  15.                                 "placeholder": "Heading"
  16.                             })
  17.                         }}
  18.                     </h1>
  19.                 </div>
  20.                 <p class="font-weight-light font-italic big">
  21.                     {{  pimcore_input("subHeading", {
  22.                             "placeholder": "Content...",
  23.                             "class": "font-weight-light font-italic big"
  24.                         })
  25.                     }}
  26.                 </p>
  27.                 <div class="row" style="word-break: break-word;">
  28.                     {% for i in pimcore_iterate_block(pimcore_block('contentblock', { class: 'w-100 d-flex justify-content-between' })) %}
  29.                         <div class="{{ not editmode ? 'col-lg-4 col-md-4 col-sm-12 mt-3 mt-lg-3 mt-md-3' }}">
  30.                             {{  pimcore_wysiwyg("content-" ~ i, {
  31.                                 "height": 600,
  32.                                 "placeholder": "Content"
  33.                             })
  34.                         }}
  35.                         </div>
  36.                     {% endfor %}
  37.                 </div>
  38.             </div>
  39.         </div>
  40.     </div>
  41. </div>
  42. {% endblock %}