feat: fileserver + logging + styling

This commit is contained in:
2025-05-18 17:00:07 +02:00
parent f382ccc008
commit fa30f66b6b
8 changed files with 160 additions and 31 deletions

View File

@ -4,15 +4,18 @@
<head>
<meta charset="UTF-8" />
<title>{{ .Title }}</title>
<link rel="stylesheet" href="/static/css/styles.css" >
</head>
<body>
<header>
<h1>{{ .Title }}</h1>
</header>
<main>
{{ block "content" . }}{{ end }}
</main>
{{ template "footer" . }}
<!-- <header> -->
<!-- <h1>{{ .Title }}</h1> -->
<!-- </header> -->
<div class="container">
<main class="modal-box">
{{ block "content" . }}{{ end }}
</main>
{{ template "footer" . }}
</div>
</body>
</html>
{{ end }}