Make project REUSE compliant
initial commit a lot more stuff Make project REUSE compliant start working on implementing audio
This commit is contained in:
commit
7bc11e49a4
136 changed files with 3218 additions and 0 deletions
17
templates/list.html
Normal file
17
templates/list.html
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{% 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue