ui2022/modal__content.html.twig line 1

Open in your IDE?
  1. {% set title = _args.title|default(null) %}
  2. {% set subtitle = _args.subtitle|default(null) %}
  3. {% set styles = _args.styles|default(null) %}
  4. {% set close = _args.close|default(null) %}
  5. <div class="modal-header{% if styles %} {{ styles }}{% endif %}">
  6.     {% block header %}
  7.         {% if title is not empty %}
  8.             <h5 class="modal-title">{{ title }}{% if subtitle is not empty %} <small>{{ subtitle }}</small>{% endif %}</h5>
  9.         {% endif %}
  10.         {% include '@ui2022/modal__close-button.html.twig'  with { close: close } %}
  11.     {% endblock %}
  12. </div>
  13. <div class="modal-body">
  14.     {% block body %}{% endblock %}
  15. </div>
  16. {% if block('footer') is defined %}
  17.     <div class="modal-footer">
  18.         {{ block('footer') }}
  19.     </div>
  20. {% endif %}