mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 17:34:25 +04:00
51 lines
1.9 KiB
HTML
51 lines
1.9 KiB
HTML
{% removeemptylines %}
|
|
{%- assign icon = include.icon -%}
|
|
{%- assign type = include.type | default: 'success' -%}
|
|
{%- unless icon -%}
|
|
{%- if type == 'success' -%}
|
|
{%- assign icon = 'check' -%}
|
|
{%- elsif type == 'warning' -%}
|
|
{%- assign icon = 'alert-triangle' -%}
|
|
{%- elsif type == 'danger' -%}
|
|
{%- assign icon = 'alert-circle' -%}
|
|
{%- elsif type == 'info' -%}
|
|
{%- assign icon = 'info-circle' -%}
|
|
{%- endif -%}
|
|
{%- endunless -%}
|
|
<div class="alert{% if include.important %} alert-important{% elsif include.minor %} alert-minor{% endif %} alert-{{ type }}{%if include.show-close %} alert-dismissible{% endif %}{% if include.avatar %} alert-avatar{% endif %}{% if include.class %} {{ include.class }}{% endif %}" role="alert">
|
|
<div class="alert-icon">
|
|
{%- include "ui/icon.html" icon=icon class="alert-icon" -%}
|
|
</div>
|
|
{% if include.description or include.list -%}
|
|
<div>
|
|
<h4 class="alert-heading">{{ include.title | default: "This is a custom alert box!" }}</h4>
|
|
<div class="alert-description">
|
|
{{ include.description | default: description }}
|
|
{% if include.list %}
|
|
{% assign items = include.list | split: ',' %}
|
|
<ul class="alert-list">
|
|
{% for item in items %}
|
|
<li>{{ item }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{%- else -%}
|
|
{{ include.title | default: "This is a custom alert box!" }}
|
|
{% if include.action -%}
|
|
<a href="#" class="alert-action">{{ include.action | default: "Action" }}</a>
|
|
{%- elsif include.link -%}
|
|
<a href="#" class="alert-link">{{ include.link | default: "Link" }}</a>
|
|
{%- endif %}
|
|
{%- endif -%}
|
|
{%- if include.buttons -%}
|
|
<div class="btn-list">
|
|
<a href="#" class="btn btn-{{ include.type | default: 'primary'}}">Okay</a>
|
|
<a href="#" class="btn">Cancel</a>
|
|
</div>
|
|
{%- endif -%}
|
|
{%- if include.show-close %}<a class="btn-close" data-bs-dismiss="alert" aria-label="close"></a>{% endif -%}
|
|
</div>
|
|
{% endremoveemptylines %}
|