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

14 lines
402 B
HTML

{% extends "base.html" %}
{% block style %}
<link href="{{get_url(path="index.css")}}" rel="stylesheet">
{% endblock %}
{% block content %}
<div id="links">
{% for section in section.subsections %}
{% set section_data = get_section(path=section, metadata_only=true) %}
<a href="{{section_data.permalink}}">{{section_data.title}}</a>
{% endfor %}
</div>
{% endblock %}