mirror of
https://github.com/tabler/tabler.git
synced 2026-08-03 00:44:37 +04:00
15 lines
597 B
HTML
15 lines
597 B
HTML
<div class="card">
|
|
<div class="card-body p-2 text-center">
|
|
<div class="text-right {% if include.percentage > 0 %}text-green{% elsif include.percentage < 0 %}text-red{% endif %}">
|
|
{% if include.percentage > 0 %}
|
|
{% include ui/icon.html icon="arrow-up-right" %}
|
|
{% elsif include.percentage < 0 %}
|
|
{% include ui/icon.html icon="arrow-down-right" %}
|
|
{% endif %}
|
|
{{ include.percentage }}%
|
|
</div>
|
|
<div class="h1 m-0">{{ include.number }}</div>
|
|
<div class="text-muted mb-4">{{ include.title }}</div>
|
|
</div>
|
|
</div>
|