{# Card component for displaying information. Usage: {% include "components/card.html" with title="Status", content="Active", class="col-span-2" %} Or as a block: {% call card(title="Details") %}

Card content here

{% endcall %} #} {% macro card(title=None, class="") %}
{% if title %}

{{ title }}

{% endif %}
{{ caller() if caller else "" }}
{% endmacro %} {% macro stat_card(title, value, color="white", class="") %}
{{ value }}
{{ title }}
{% endmacro %} {% macro info_card(title, items, class="") %}
{% if title %}

{{ title }}

{% endif %}
{% for label, value in items %}
{{ label }}
{{ value }}
{% endfor %}
{% endmacro %}