diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-08 15:37:49 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-08 15:37:49 +0000 |
commit | 0d7989c353d06397e18e4562d97b4b0cd2160a0e (patch) | |
tree | 1d8bff19395e96e9a0382971a40c8656df31680c /ui | |
parent | 145b0e74247a161c4c22e1aa0c5568604a3a83b6 (diff) |
First appearance of HTML on the home page
Diffstat (limited to 'ui')
-rw-r--r-- | ui/html/base.tmpl.html | 13 |
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 }} |