summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-02-08 15:37:49 +0000
committerMatthew Lemon <y@yulqen.org>2024-02-08 15:37:49 +0000
commit0d7989c353d06397e18e4562d97b4b0cd2160a0e (patch)
tree1d8bff19395e96e9a0382971a40c8656df31680c /ui
parent145b0e74247a161c4c22e1aa0c5568604a3a83b6 (diff)
First appearance of HTML on the home page
Diffstat (limited to 'ui')
-rw-r--r--ui/html/base.tmpl.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/ui/html/base.tmpl.html b/ui/html/base.tmpl.html
new file mode 100644
index 0000000..77ea1e9
--- /dev/null
+++ b/ui/html/base.tmpl.html
@@ -0,0 +1,13 @@
+{{ define "base" }}
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width" />
+ <title>DED</title>
+ </head>
+ <body>
+ <h1>Hello from DED!</h1>
+ </body>
+</html>
+{{ end }}