From 0ac82c133b78a14239beb9034380c44d95d4bad3 Mon Sep 17 00:00:00 2001 From: Melonai Date: Mon, 26 Jul 2021 21:52:58 +0200 Subject: Portgate pages and templates --- assets/templates/_base.template.html | 11 +++++++++++ assets/templates/authenticate.template.html | 3 +++ assets/templates/information.template.html | 3 +++ 3 files changed, 17 insertions(+) create mode 100644 assets/templates/_base.template.html create mode 100644 assets/templates/authenticate.template.html create mode 100644 assets/templates/information.template.html (limited to 'assets/templates') 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 @@ + + + + + Portgate + + +

Portgate

+ {{template "content"}} + + \ 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"}} +

This is the authentication page...

+{{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"}} +

This is the information page...

+{{end}} \ No newline at end of file -- cgit 1.4.1