{% load safe_html %} {# Security: Header, content, and footer are sanitized to prevent XSS. #}
{% if header or title %}
{% if title %}

{{ title }}

{% endif %} {% if description %}

{{ description }}

{% endif %} {% if header %} {{ header|sanitize }} {% endif %}
{% endif %}
{{ content|sanitize }} {% block card_content %}{% endblock %}
{% if footer %}
{{ footer|sanitize }}
{% endif %}