cookbook/templates/section.html
Fey Naomi Schrewe 8768cbae42 Initial recipe
Signed-off-by: Fey Naomi Schrewe <fey@posteo.eu>
2023-09-03 20:34:09 +02:00

16 lines
335 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 %}
<a href="{{page.permalink}}">{{page.title}}</a>
{% endfor %}
</div>
{% endblock %}