Initial Commit

This commit is contained in:
2021-12-08 09:24:05 -08:00
commit c8bec472be
22 changed files with 3305 additions and 0 deletions

16
templates/error.html Normal file
View File

@@ -0,0 +1,16 @@
{{define "page"}}
Error
{{end}}
{{define "body"}}
<section class="hero is-fullheight">
<div class="hero-body">
<div class="container has-text-centered">
<p class="title">{{.Message}} ({{.Status}})</p>
{{if .ErrExists}}
<p>{{.Error}}</p>
{{end}}
</div>
</div>
</section>
{{end}}