initial commit a lot more stuff Make project REUSE compliant start working on implementing audio
17 lines
372 B
HTML
17 lines
372 B
HTML
{% extends "base.html" %}
|
|
{% block title %}
|
|
{{ section.title }}
|
|
{% endblock title %}
|
|
{% block content %}
|
|
<h1>{{ section.title }}</h1>
|
|
<ul>
|
|
{% for page in section.pages %}
|
|
<li>
|
|
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
|
|
<p>
|
|
{{ page.description | safe }}
|
|
<p>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{%endblock content %}
|