{# Reusable Card Component Base Usage: {% include "components/card_base.html" with { "emoji": "🧩", "title": "Module Name", "subtitle": "v1.0.0", "description": "Module description", "tags": ["security", "network"], "status": "stable", "actions": [...] } %} #}
{{ emoji|default('📦') }}

{{ title|default('Untitled') }}

{% if subtitle %} {{ subtitle }} {% endif %}
{% if status %} {{ status }} {% endif %}
{% if description %}

{{ description }}

{% endif %} {% if tags and tags|length > 0 %}
{% for tag in tags %} {{ tag }} {% endfor %}
{% endif %} {% if extra_content %}
{{ extra_content }}
{% endif %}