cookbook/templates/section.html
Fey Naomi Schrewe 7d19fdea8c
Add tomato soup
Signed-off-by: Fey Naomi Schrewe <fey@posteo.eu>
2023-09-04 18:18:35 +02:00

16 lines
342 B
HTML

{% extends "base.html" %}
{% block style %}
<link href="{{get_url(path="section.css")}}" rel="stylesheet">
{% endblock %}
{% block content %}
<h1>{{section.title}}</h1>
<div id="links">
{% for page in section.pages %}
<p><a href="{{page.permalink}}">{{page.title}}</a></p>
{% endfor %}
</div>
{% endblock %}