Initial commit

This commit is contained in:
xinyangli 2023-12-19 14:39:13 +08:00
commit 866fc4bb28
22 changed files with 3839 additions and 0 deletions

13
templates/list_files.html Normal file
View file

@ -0,0 +1,13 @@
<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>