templates/areas/scripts-brick/view.html.twig line 1

Open in your IDE?
  1. {% embed 'app/area-brick-layout.html.twig' %}
  2.     {% block content %}
  3.         <!-- Branches 4 columns -->
  4.         <section>
  5.             <div class="{{ pimcore_checkbox('hasContainer').data ? 'container py-10 md:py-20' : '' }}">
  6.                 {% if editmode %}
  7.                     {{ pimcore_textarea('script', { placeholder: 'Scripts' }) }}
  8.                 {% else %}
  9.                     {{ pimcore_textarea('script').data | raw }}
  10.                 {% endif %}
  11.             </div>
  12.         </section>
  13.     {% endblock %}
  14. {% endembed %}