summary refs log tree commit diff
path: root/assets/templates
diff options
context:
space:
mode:
Diffstat (limited to 'assets/templates')
-rw-r--r--assets/templates/_base.template.html11
-rw-r--r--assets/templates/authenticate.template.html3
-rw-r--r--assets/templates/information.template.html3
3 files changed, 17 insertions, 0 deletions
diff --git a/assets/templates/_base.template.html b/assets/templates/_base.template.html
new file mode 100644
index 0000000..2ed25d1
--- /dev/null
+++ b/assets/templates/_base.template.html
@@ -0,0 +1,11 @@
+<!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
diff --git a/assets/templates/authenticate.template.html b/assets/templates/authenticate.template.html
new file mode 100644
index 0000000..21f31e4
--- /dev/null
+++ b/assets/templates/authenticate.template.html
@@ -0,0 +1,3 @@
+{{define "content"}}
+<h1>This is the authentication page...</h1>
+{{end}}
\ No newline at end of file
diff --git a/assets/templates/information.template.html b/assets/templates/information.template.html
new file mode 100644
index 0000000..e87885c
--- /dev/null
+++ b/assets/templates/information.template.html
@@ -0,0 +1,3 @@
+{{define "content"}}
+<h1>This is the information page...</h1>
+{{end}}
\ No newline at end of file