serves3/templates/index.html.tera

21 lines
491 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 %}
<li><a href="{{ object }}">{{ object }}</a></li>
{% endfor %}
</ul>
</body>
</html