aboutsummaryrefslogtreecommitdiff
path: root/ui/templates/base.tmpl.html
diff options
context:
space:
mode:
authorAlexander Kavon <hawk@alexkavon.com>2023-11-28 05:24:30 -0500
committerAlexander Kavon <hawk@alexkavon.com>2023-11-28 05:24:30 -0500
commit629b0189b7bf20c748a1d37f8803ad0e3ffb8a49 (patch)
tree6692374508230b46be3aee323acd7aa25b3d4a91 /ui/templates/base.tmpl.html
parent7d7059d53891bc1abb284d9b288505a5d406b307 (diff)
working container compose w/database, no more auth package, message template partial, working html template writing, auth routes in user/routes.go
Diffstat (limited to 'ui/templates/base.tmpl.html')
-rw-r--r--ui/templates/base.tmpl.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/templates/base.tmpl.html b/ui/templates/base.tmpl.html
index 4e28bc0..a080925 100644
--- a/ui/templates/base.tmpl.html
+++ b/ui/templates/base.tmpl.html
@@ -3,9 +3,11 @@
<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>