aboutsummaryrefslogtreecommitdiff
path: root/ui/templates/base.tmpl.html
diff options
context:
space:
mode:
authorAlexander Kavon <me+git@alexkavon.com>2024-01-23 06:33:20 -0500
committerAlexander Kavon <me+git@alexkavon.com>2024-01-23 06:33:20 -0500
commit8d92bdf7da95e1085485c0e60b9dac19c246e235 (patch)
tree5c346f8bdb10b3b8084a3b9e95c727f7fa3914be /ui/templates/base.tmpl.html
parent8510c36ded85740885e67b59ee2ec2360986c0a9 (diff)
move ui templates into src, update conf to handle other paths, export User Insert Hooks
Diffstat (limited to 'ui/templates/base.tmpl.html')
-rw-r--r--ui/templates/base.tmpl.html14
1 files changed, 0 insertions, 14 deletions
diff --git a/ui/templates/base.tmpl.html b/ui/templates/base.tmpl.html
deleted file mode 100644
index a080925..0000000
--- a/ui/templates/base.tmpl.html
+++ /dev/null
@@ -1,14 +0,0 @@
-{{define "base"}}
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <title>{{template "title" .}} | newsstand.nyc</title>
- <link rel="stylesheet" href="https://unpkg.com/@blaze/css@x.x.x/dist/blaze/blaze.css">
- <script src="https://unpkg.com/htmx.org@1.9.9" integrity="sha384-QFjmbokDn2DjBjq+fM+8LUIVrAgqcNW2s0PjAxHETgRn9l4fvX31ZxDxvwQnyMOX" crossorigin="anonymous"></script>
-</head>
-<body>
- {{template "messages" .}}
- {{template "main" .}}
-</body>
-</html>
-{{end}}