aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2025-05-24 12:52:32 -0500
committerTim Keller <tjkeller.xyz>2025-05-24 12:52:32 -0500
commitbcf66d92d664dd707937ae866830a6bee0751745 (patch)
tree5c1f7ecc037b53b434befe71509cc3009beaf3d7 /templates/base.html
parent6b0385c495b246859d27bfa75e1bd4dfa45c2be2 (diff)
downloadmintube-bcf66d92d664dd707937ae866830a6bee0751745.tar.xz
mintube-bcf66d92d664dd707937ae866830a6bee0751745.zip
cleanup all go code and add an index/home page that is composed from the readme fileHEADmaster
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..7c1f8eb
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
+ <link rel="stylesheet" href="/static/style.css">
+ {{ block "scripts" . }}{{ end }}
+</head>
+<body>
+ {{ block "content" . }}{{ end }}
+</body>
+</html>