diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2024-10-02 17:26:41 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2024-10-08 15:21:16 -0400 |
| commit | fc9d3f4dfea54fb8cad3dda316295a25a2e08056 (patch) | |
| tree | 825b16e2c72b19536e9042c98c13127690dd5c52 /templates/base.html | |
| parent | 621e78947eb1c4607ce8e6bf5ce133d4927b3cf2 (diff) | |
Add first pass at dashboard
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..768d7eb --- /dev/null +++ b/templates/base.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html lang=en> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + {{ block "head" . }}<title>Nonsense Time Dashboard</title>{{ end }} + <link rel="stylesheet" href="/static/styles.css"> +</head> +<body> + {{ block "body" . }}{{ end }} +</body> +</html> |
