templates/areas/content-social-embed/view.html.twig line 1

Open in your IDE?
  1. <section class="quote-area {{ not pimcore_checkbox('fullwidth').checked() ? 'container container-sm ' }} content-block js-fade-in {{ include('Layout/includes/editmode-box-classes.html.twig') }} {{ pimcore_checkbox('isSmall').data ? 'quote-area--small' : '' }} {{ styleModifier | default(null) }} {{ not pimcore_input('anchorTitle').empty ? 'js-anchor-nav__item' : '' }}" {% if not pimcore_input('anchorTitle').empty %}data-anchor-nav-title="{{ pimcore_input('anchorTitle').frontend }}"{% endif %}>
  2.     {% embed 'Includes/editmode-settings.html.twig' %}
  3.         {% block additionalInfo %}
  4.             <div>
  5.                 <label>
  6.                     {{ pimcore_checkbox('fullwidth') }} Full Width?
  7.     
  8.                     {{ pimcore_checkbox('titleBlockCentered') }} Center Headline?
  9.                 </label>
  10.             </div>
  11.         {% endblock %}
  12.     {% endembed %}
  13.     {{ include('Includes/title-block-editable.html.twig') }}
  14.     
  15.     <div class="{{ not pimcore_checkbox('fullwidth').checked() ? 'd-flex justify-content-xl-center overflow-x-xl-auto' }} ">
  16.         {{ pimcore_textarea('embed-code', {'htmlspecialchars': false, 'placeholder': 'Enter embed code here!'}) }}
  17.     </div>
  18. </section>