forked from matteo/serves3
1
0
Fork 0
serves3/templates/index.html.tera

21 lines
503 B
Plaintext
Raw Normal View History

<!DOCTYPE html>
<!--
SPDX-FileCopyrightText: © Matteo Settenvini <matteo.settenvini@montecristosoftware.eu>
SPDX-License-Identifier: EUPL-1.2
-->
<html>
<head></head>
<body>
2023-07-01 21:31:04 +02:00
<h1>{{ path }}</h1>
<ul>
2023-07-02 02:06:27 +02:00
{% if path != "/" %}
2023-07-01 21:31:04 +02:00
<li><a href="../">..</a></li>
{% endif %}
{% for object in objects %}
2023-07-12 15:42:14 +02:00
<li><a href="{{ object | urlencode }}">{{ object }}</a></li>
{% endfor %}
</ul>
</body>
</html