diff options
author | Samuel Johnson <[email protected]> | 2025-02-10 02:19:21 -0500 |
---|---|---|
committer | Samuel Johnson <[email protected]> | 2025-02-10 02:19:21 -0500 |
commit | 9de239a9badbbc075f1cc8079a6435f0780e5d26 (patch) | |
tree | 559f29f7c3a0213a4fd712f4f325f5f820e6ca79 /ui/html/base.tmpl.html |
But it was a beginningtrunk
Diffstat (limited to 'ui/html/base.tmpl.html')
-rw-r--r-- | ui/html/base.tmpl.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ui/html/base.tmpl.html b/ui/html/base.tmpl.html new file mode 100644 index 0000000..6b05b70 --- /dev/null +++ b/ui/html/base.tmpl.html @@ -0,0 +1,17 @@ +{{define "base"}} +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>{{template "title" .}} - Paterissa</title> +</head> +<body> + <header> + <h1><a href="/">Paterissa</a></h1> + </header> + <main> + {{template "main" .}} + </main> +</body> +</html> +{{end}} |