fupstatic: add some basic templates/css/js.

This commit is contained in:
Luke Granger-Brown 2021-03-20 19:51:57 +00:00
parent 03cf4ea939
commit 2104261536
5 changed files with 12 additions and 0 deletions

View file

View file

@ -0,0 +1 @@

View file

@ -0,0 +1,4 @@
{{define "main"}}
<h1>404 Not Found</h1>
<p>Sorry. :(</p>
{{end}}

View file

@ -0,0 +1,4 @@
<!DOCTYPE html>
<html>
{{block "main" .}}{{end}}
</html>

View file

@ -0,0 +1,3 @@
{{define "main"}}
<h1>Hello</h1>
{{end}}