{# the base template that all modals extend #}
{# #} {% block label %}{{ __("Give Me a Label!") }}{% endblock %} {# #}
{% block instructions %}{% endblock %}
{# This div is intended to allow JS to capture and move the controls, it should Not be styled, do that with your own markup when extending if needed #}
{% block controls %}{% endblock %}
{# #}
{% block filters %} {% endblock %}
{# #}
{# Base modals don't have breadcrumbs, but slideable modals do, extend baseSlideable.html #} {% block breadcrumb %}{% endblock %} {# This is initially just *our* data-modal-content, but later could contain many #} {# due to a slide transition. #}
{# This is everything that slides in as part of a single sliding breadcrumb modal. #} {# In a non-sliding modal this extra structure is harmless, it's all scoped to the #} {# apos-modal-slideable class. -Tom #}
{% block body %}{{ __("I am a Modal!") }}{% endblock %}
{% block footerContainer %} {% endblock %}