serves3/templates/index.html.tera

16 lines
363 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>
<ul>
{% for object in objects %}
<li><a href="{{ object }}">{{ object }}</a></li>
{% endfor %}
</ul>
</body>
</html