templates/areas/wysiwyg/view.html.twig line 1

Open in your IDE?
  1. {% extends 'areas/wysiwyg/editables.html.twig' %}
  2. {% block view %}
  3.   {% if contentInclude is not defined %}
  4.     {% set wysiwygStretchSelectValue = wysiwygStretchSelect.isChecked() %}
  5.     {% set maxWidthSelectValue = maxWidthSelect.isChecked() %}
  6.   {% endif %}
  7.   <div class="c-wysiwyg e-rte
  8.   {% if wysiwygStretchSelectValue == true %}flex-fill pb-0{% endif %}
  9.   {% if maxWidthSelectValue == true %}c-wysiwyg__max-width{% endif %}
  10.   {{rowPaddingLeftRight}} {{rowPaddingTopBottom}} {{componentMargin}} background-{{wysiwygBackground}}"
  11.   >
  12.     {{ rte | raw }}
  13.   </div>
  14. {% endblock %}