14 lines
402 B
HTML
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 %} |