diff options
Diffstat (limited to 'ui/templates')
| -rw-r--r-- | ui/templates/base.tmpl.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ui/templates/base.tmpl.html b/ui/templates/base.tmpl.html new file mode 100644 index 0000000..4e28bc0 --- /dev/null +++ b/ui/templates/base.tmpl.html @@ -0,0 +1,12 @@ +{{define "base"}} +<!DOCTYPE html> +<html lang="en"> +<head> + <title>{{template "title" .}} | newsstand.nyc</title> + <script src="https://unpkg.com/htmx.org@1.9.9" integrity="sha384-QFjmbokDn2DjBjq+fM+8LUIVrAgqcNW2s0PjAxHETgRn9l4fvX31ZxDxvwQnyMOX" crossorigin="anonymous"></script> +</head> +<body> + {{template "main" .}} +</body> +</html> +{{end}} |
