You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
352 B
HTML
16 lines
352 B
HTML
5 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>{{title}}</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<ul>
|
||
|
{% for doc in documentslist %}
|
||
|
<li><a href="./{{ doc['file'] }}">{{ doc['title'] }}</a>
|
||
|
{{ doc['date'].year }}.{{ doc['date'].month }}.{{ doc['date'].day }}
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</body>
|
||
|
</html>
|