This repository has been archived on 2024-01-13. You can view files and clone it, but cannot push or open issues or pull requests.

25 lines
1.2 KiB
HTML
Raw Normal View History

2020-05-14 08:18:36 -05:00
{% if include.link %}
<a href="{{ include.link }}" class="badge badge-{{ include.color | default: " info" }}" {% if include.tooltip %} {% if
include.text == null or include.text == "" %} aria-label="{{include.tooltip}}" {% endif %} data-toggle="tooltip"
data-original-title="{{ include.tooltip }}"><i aria-hidden="true" class="{{ include.icon | default: " far
fa-question-circle"}}"></i> {{ include.text }}
{% else %}
{% if include.text == null or include.text == "" %}
aria-label="{{include.link}}"
{% endif %}
><i aria-hidden="true" class="{{ include.icon | default: " fas fa-external-link-alt"}}"></i> {{ include.text }}{%
endif %}
2020-05-14 08:18:36 -05:00
</a>
{% else %}
<span class="badge badge-{{ include.color | default: " info" }}" {% if include.tooltip %}
{% if include.text == null or include.text == "" %} aria-label="{{include.tooltip}}" {% endif %}
data-toggle="tooltip" data-original-title="{{ include.tooltip }}"> <i
class="{{ include.icon | default: " far fa-question-circle"}}"></i> {{include.text}}
2020-05-14 08:18:36 -05:00
{% else %}
{% if include.text == null or include.text == "" %}
aria-label="{{include.link}}"
{% endif %}
> {% if include.icon %}<i class="{{ include.icon }}"></i>{% endif %} {{include.text}}
2020-05-14 08:18:36 -05:00
{% endif %}
</span>
{% endif %}