diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-08 16:54:02 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-08 16:54:02 +0000 |
commit | ced9bbed371d7a1d7692c820f80c77f43ebd32a3 (patch) | |
tree | 896ef80f261b81049ac18797e7b0c3ae89c0837f /ui/html/pages | |
parent | 4bcba90a1a78cac4ec2ed370bb751d95717b7120 (diff) |
Created a /organisations/list route
There is also some basic CSS here.
Also introduced a proper structured logger.
Diffstat (limited to '')
-rw-r--r-- | ui/html/pages/home.tmpl.html | 2 | ||||
-rw-r--r-- | ui/html/pages/organisations/list.tmpl.html | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ui/html/pages/home.tmpl.html b/ui/html/pages/home.tmpl.html index 882a3ba..03be3ce 100644 --- a/ui/html/pages/home.tmpl.html +++ b/ui/html/pages/home.tmpl.html @@ -1,4 +1,4 @@ -{{define "title"}}Home{{end}} +{{ define "title"}}Home{{ end }} {{ define "main" }} <h2>Data</h2> diff --git a/ui/html/pages/organisations/list.tmpl.html b/ui/html/pages/organisations/list.tmpl.html new file mode 100644 index 0000000..b29d7a6 --- /dev/null +++ b/ui/html/pages/organisations/list.tmpl.html @@ -0,0 +1,6 @@ +{{ define "title" }}Organisations{{end}} + +{{ define "main" }} +<h2>Organisations</h2> +<p>There is nothing to see here yet.</p> +{{ end }} |