This repository has been archived on 2024-01-13. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2020-05-14 08:18:36 -05:00
|
|
|
{% if include.link %}
|
|
|
|
|
<a
|
2020-05-16 04:03:22 -05:00
|
|
|
href="{{ include.link }}" class="badge badge-{{ include.color | default: "info" }}"
|
2020-05-14 08:18:36 -05:00
|
|
|
{% if include.tooltip %}
|
|
|
|
|
data-toggle="tooltip"
|
2021-05-04 03:33:03 +00:00
|
|
|
data-original-title="{{ include.tooltip }}"><em class="{{ include.icon | default: "far fa-question-circle"}}"></em> {{ include.text }}
|
|
|
|
|
{% else %}><em class="{{ include.icon | default: "fas fa-external-link-alt"}}"></em> {{ include.text }}{% endif %}
|
2020-05-14 08:18:36 -05:00
|
|
|
</a>
|
|
|
|
|
{% else %}
|
|
|
|
|
<span
|
|
|
|
|
class="badge badge-{{ include.color | default: "info" }}"
|
|
|
|
|
{% if include.tooltip %}
|
|
|
|
|
data-toggle="tooltip"
|
2020-12-13 20:37:35 +00:00
|
|
|
data-original-title="{{ include.tooltip }}"
|
2021-05-04 03:33:03 +00:00
|
|
|
> <em class="{{ include.icon | default: "far fa-question-circle"}}"></em> {{include.text}}
|
2020-05-14 08:18:36 -05:00
|
|
|
{% else %}
|
2021-05-04 03:33:03 +00:00
|
|
|
> {% if include.icon %}<em class="{{ include.icon }}"></em>{% endif %} {{include.text}}
|
2020-05-14 08:18:36 -05:00
|
|
|
{% endif %}
|
|
|
|
|
</span>
|
|
|
|
|
{% endif %}
|