mirror of
https://github.com/kevinveenbirkenbach/homepage.veen.world.git
synced 2025-01-15 19:23:58 +01:00
10 lines
186 B
Django/Jinja
10 lines
186 B
Django/Jinja
{% extends "moduls/base.html.j2" %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
{% for card in cards %}
|
|
{% include "moduls/card.html.j2" %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|