kocandaci/templates/gallery-list.html

8 lines
172 B
HTML
Raw Normal View History

2024-01-12 16:31:33 +01:00
{% extends "base.html" %}
{% block content %}
{% for gallery in section.pages %}
<a href="{{ gallery.permalink }}">{{ gallery.title }}</a>
{% endfor %}
{% endblock %}