Serve basic files page.

This commit is contained in:
CronyAkatsuki 2023-12-19 21:17:59 +01:00
parent d68add7803
commit c2e09996a2
3 changed files with 89 additions and 0 deletions

17
public/views/files.html Normal file
View file

@ -0,0 +1,17 @@
{{define "files"}}
<!doctype html>
<html lang="en">
<head>
<title>Files - UpFast</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="/css/files.css" rel="stylesheet" />
</head>
<body>
<h1>File List</h1>
</body>
</html>
{{end}}