{{ title }}
{{ subtitle }}
{% for name, card in cards.items() %}
{{ loop.index }}
{{ name }}
{% if 'tags' in card %}
{% for tag, color in card.tags.items() %}
{{ tag }}
{% endfor %}
{% endif %}
{% for key, content in card.content.items() %}
{% if 'title' in content %}
{{ content.title }}
{% endif %}
{{ content.main }}
{% if not loop.last %}
{% endif %} {% endfor %}
{% endfor %}