summaryrefslogtreecommitdiff
path: root/views/index.gohtml
diff options
context:
space:
mode:
authordemo <demo@antix1>2026-05-07 15:46:26 -0400
committerdemo <demo@antix1>2026-05-07 15:46:26 -0400
commit5aecda4a8006c74e8c912d937fb9b282630bb883 (patch)
tree3f6a60c5e7c6e174476c2816a361f4e9d8415695 /views/index.gohtml
parent9c1d8f97aae6454d86c6efdfde03e17cf7ea61ed (diff)
feat: implement basic page-infrastructure
Diffstat (limited to 'views/index.gohtml')
-rw-r--r--views/index.gohtml16
1 files changed, 16 insertions, 0 deletions
diff --git a/views/index.gohtml b/views/index.gohtml
new file mode 100644
index 0000000..752f928
--- /dev/null
+++ b/views/index.gohtml
@@ -0,0 +1,16 @@
+{{ define "index" }}
+ <!DOCTYPE html>
+ <html lang="en">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ <meta name="description" content="" />
+ <meta name="author" content="" />
+ <meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, width=device-width" />
+ <title></title>
+ <link href="css/style.css" rel="stylesheet" />
+ </head>
+ <body>
+ {{ template "page" . }}
+ </body>
+ </html>
+{{ end }}