{% comment %} Card Component - Django Template Version of shadcn/ui Card Usage: {% include 'components/ui/card.html' with title='Card Title' content='Card content' %} {% 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 %}
{% if content %} {{ content|safe }} {% endif %} {% if body_content %} {{ body_content|safe }} {% endif %}
{% endif %} {% if footer_content %}
{{ footer_content|safe }}
{% endif %}