diff options
Diffstat (limited to 'ui/html')
-rw-r--r-- | ui/html/base.tmpl.html | 3 | ||||
-rw-r--r-- | ui/html/pages/home.tmpl.html | 2 | ||||
-rw-r--r-- | ui/html/pages/organisations/list.tmpl.html | 6 |
3 files changed, 10 insertions, 1 deletions
diff --git a/ui/html/base.tmpl.html b/ui/html/base.tmpl.html index f7f7e48..cb98c32 100644 --- a/ui/html/base.tmpl.html +++ b/ui/html/base.tmpl.html @@ -4,6 +4,9 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width" /> + <link rel="stylesheet" href="/static/css/main.css"> + <link rel="shortcut icon" href="/static/img/favicon.ico", type='image/x-icon'> + <!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700"> --> <title>{{ template "title" .}} - DED</title> </head> <body> 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 }} |