Loothandler

This commit is contained in:
Joren Schipman
2024-05-04 01:30:04 +02:00
parent 04db12a77f
commit 6d8d316bb1
6 changed files with 156 additions and 2 deletions

18
files.html Normal file
View File

@@ -0,0 +1,18 @@
<!-- files.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Files</title>
</head>
<body>
<h2>Files</h2>
<ul>
{{range .Files}}
<li>{{.}}</li>
{{end}}
</ul>
</body>
</html>