1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-26 04:54:40 +04:00
Files
tabler/pages/_includes/ui/modal.html
T
2020-02-09 16:49:37 +01:00

12 lines
432 B
HTML

{% assign modal-id = include.modal-id | default: 'simple' %}
{% capture_global modals %}
<div class="modal modal-blur fade" id="modal-{{ modal-id }}" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog{% unless include.top %} modal-dialog-centered{% endunless %}" role="document">
<div class="modal-content">
{% include parts/modals/{{ modal-id }}.html %}
</div>
</div>
</div>
{% endcapture_global %}