Add realtime stats for filesystem

This commit is contained in:
2023-05-19 21:45:42 +02:00
parent 98c725f291
commit 794a38da19
8 changed files with 133 additions and 7 deletions

23
res/template/403.html Normal file
View File

@@ -0,0 +1,23 @@
{{define "403"}}<!DOCTYPE html>
<html lang="en">
<head>
{{template "meta_tags" "Forbidden"}}
</head>
<body>
{{template "page_top" .}}
<header>
<h1>Forbidden</h1>
</header>
<div id="page_content" class="page_content">
<section>
<p>
You do not have permission to access this resource.
</p>
</section>
</div>
{{template "page_bottom" .}}
{{template "analytics"}}
</body>
</html>
{{end}}