1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-23 02:14:26 +04:00
Files
tabler/pages/_includes/ui/alert.html
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>