{% extends 'base.html' %} {% block content %}

{% block title %} Welcome to grgr's library {% endblock %}

{% for category, cards in categories.items() %} {% for card in cards %}
{{ category }}
{{ card['content'] }}
{% endfor %} {% endfor %}
{% endblock %}