1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-18 03:21:41 +04:00
Files
tabler/pages/_includes/ui/alert.html
T
2019-04-30 11:10:01 +02:00

5 lines
337 B
HTML

<div class="alert alert-{{ include.type | default: 'primary'}}" role="alert">
{% if include.close %}<a href="#" class="close" data-dismiss="alert" aria-label="close">&times;</a>{% endif %}
{% if include.icon %}{% include ui/icon.html icon=include.icon %}{% endif %} {{ include.text | default: "This is a custom alert box!" }}
</div>