summary refs log tree commit diff
path: root/assets/templates/_base.template.html
diff options
context:
space:
mode:
Diffstat (limited to 'assets/templates/_base.template.html')
-rw-r--r--assets/templates/_base.template.html27
1 files changed, 18 insertions, 9 deletions
diff --git a/assets/templates/_base.template.html b/assets/templates/_base.template.html
index 2ed25d1..d7966bf 100644
--- a/assets/templates/_base.template.html
+++ b/assets/templates/_base.template.html
@@ -1,11 +1,20 @@
 <!DOCTYPE html>
 <html lang="en">
-<head>
-    <meta charset="UTF-8">
-    <title>Portgate</title>
-</head>
-<body>
-    <h2>Portgate</h2>
-    {{template "content"}}
-</body>
-</html>
\ No newline at end of file
+    <head>
+        <meta charset="UTF-8" />
+        <title>Portgate</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+        <link rel="stylesheet" href="_portgate/static/index.css" />
+    </head>
+    <body>
+        <div class="container">
+            <img
+                class="logo"
+                src="_portgate/static/portgate.svg"
+                alt="Portgate"
+            />
+            <h1 class="title">Portgate</h1>
+            {{template "content"}}
+        </div>
+    </body>
+</html>