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

Open in your IDE?
  1. <section class="html-area content-block js-fade-in {{ include('Layout/includes/editmode-box-classes.html.twig') }} {{ 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('titleBlockCentered') }} Center Headline?
  7.                 </label>
  8.             </div>
  9.         {% endblock %}
  10.     {% endembed %}
  11.     <div class="container">
  12.         <div class="injected-html-code">
  13.             {{ include('Includes/title-block-editable.html.twig') }}
  14.             {{ pimcore_textarea('embed-code', {'htmlspecialchars': false, 'placeholder': 'Enter embed code here!'}) | raw }}
  15.         </div>
  16.       
  17.     </div>
  18. </section>