canva-render/templates/list_files.html
2023-12-19 14:39:13 +08:00

13 lines
No EOL
212 B
HTML

<html>
<head>
<title>Files</title>
</head>
<body>
<h1>Files:</h1>
<ul>
{% for file in files %}
<li><a href="{{file}}">{{file}}</a></li>
{% endfor %}
</ul>
</body>
</html>