kayomn.net/templates/section.html

15 lines
231 B
HTML
Raw Normal View History

2023-08-22 00:29:52 +02:00
{% extends "base.html" %}
{% block content %}
{% for page in section.pages %}
<a href="{{ page.permalink }}">
<div>
<h2>{{ page.title }}</h2>
<h3>{{ page.description }}</h3>
</div>
</a>
{% endfor %}
{% endblock content %}