custom/plugins/MoorlFoundation/src/Resources/views/storefront/base.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_body_inner %}
  3.     {{ parent() }}
  4.     <div class="modal fade" id="moorlFoundationModal" tabindex="-1" role="dialog" aria-hidden="true">
  5.         {% sw_include "@Storefront/plugin/moorl-foundation/modal.html.twig" with {
  6.             modal: {
  7.                 centered: true,
  8.                 size: 'lg',
  9.                 title: 'Foundation Modal',
  10.                 body: '<p>This Modal is powered by moori Foundation</p>',
  11.                 button: false
  12.             }
  13.         } %}
  14.     </div>
  15. {% endblock %}