{% comment %} Card Component - Django Cotton Version of shadcn/ui Card Usage: Card content Preserves EXACT same HTML output as the original include version {% endcomment %}
{% if title or header_content %}
{% if title %}

{{ title }}

{% endif %} {% if description %}

{{ description }}

{% endif %} {% if header_content %} {{ header_content|safe }} {% endif %}
{% endif %} {% if content or body_content or slot %}
{% if content %} {{ content|safe }} {% endif %} {% if body_content %} {{ body_content|safe }} {% endif %} {% if slot %} {{ slot }} {% endif %}
{% endif %} {% if footer_content %}
{{ footer_content|safe }}
{% endif %}