personal-page/templates/index.html

13 lines
288 B
HTML

{% extends "base.html" %}
{% block content %}
{{section.content | safe}}
<ul>
{% for sub in section.subsections %}
{% set sub = get_section(path=sub, metadata_only=true) %}
<li><a href="{{sub.permalink}}">{{sub.title | safe}}</a></li>
{% endfor %}
</ul>
{% endblock content %}