kocandaci/templates/gallery-list.html
2024-01-12 16:31:33 +01:00

8 lines
172 B
HTML

{% extends "base.html" %}
{% block content %}
{% for gallery in section.pages %}
<a href="{{ gallery.permalink }}">{{ gallery.title }}</a>
{% endfor %}
{% endblock %}