Files
stundenfuchs/app/templates/ui/modal.html
T
maddin 6fbd1bb3c2
CI / checks (push) Has been cancelled
chore: initialize public repository
2026-03-22 12:57:09 +00:00

19 lines
690 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% macro modal(id, title, close_label='Schließen') -%}
<div class="modal" id="{{ id }}" data-component="modal" hidden>
<div class="modal__backdrop" data-action="modal-close"></div>
<section class="modal__dialog"
role="dialog"
aria-modal="true"
aria-labelledby="{{ id }}-title">
<header class="modal__header">
<h2 id="{{ id }}-title">{{ title }}</h2>
<button class="modal__close"
type="button"
data-action="modal-close"
aria-label="{{ close_label }}">×</button>
</header>
<div class="modal__body">{{ caller() }}</div>
</section>
</div>
{%- endmacro %}