{% comment %} Cotton Card Component - Django Template Version of shadcn/ui Card Converts existing card component to use Django Cotton's component system {% endcomment %}
{% if title or description or header_content %}
{% if title %}

{{ title }}

{% endif %} {% if description %}

{{ description }}

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