base tabler
This commit is contained in:
parent
ac2cfa9fe1
commit
0f84beacf1
1432 changed files with 28760 additions and 1 deletions
50
liquid/includes/ui/alert.html
Normal file
50
liquid/includes/ui/alert.html
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{% 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue