{% comment %} Reusable card component for consistent styling across the application. Usage: {% include 'components/card.html' with title="Card Title" content="Card content" %} {% endcomment %}
{% if image_url %}
{{ image_alt|default:title }}
{% endif %}
{% if title %}

{% if link_url %} {{ title }} {% else %} {{ title }} {% endif %}

{% endif %} {% if subtitle %}

{{ subtitle }}

{% endif %} {% if content %}
{{ content|truncatewords:30 }}
{% endif %} {% if tags %}
{% for tag in tags %} {{ tag }} {% endfor %}
{% endif %} {% if stats %}
{% for stat in stats %}
{% if stat.icon %} {% endif %} {{ stat.label }}: {{ stat.value }}
{% endfor %}
{% endif %} {% if actions %}
{% for action in actions %} {% if action.icon %} {% endif %} {{ action.label }} {% endfor %}
{% endif %}