diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-04-21 18:46:40 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-04-21 18:46:40 -0700 |
commit | d14605d1388aaa7cc9ef1c230eae5ba14c9cef44 (patch) | |
tree | 59fcda0fae7899ca577eed1f72d89bff17d5ad5d /templates/base.html | |
download | backup-notify-d14605d1388aaa7cc9ef1c230eae5ba14c9cef44.tar.gz backup-notify-d14605d1388aaa7cc9ef1c230eae5ba14c9cef44.zip |
initial commit
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..c8766c0 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,18 @@ +{{ define "base" }} +<!DOCTYPE html> +<html> + <head> + <title>backup notify</title> + <meta charset="utf-8"> + <meta name="viewport" content= + "width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> + <link rel="stylesheet" type="text/css" href= + "/static/css/styles.css"> + </head> + <body data-theme="DARK"> + <div id="content" class="container"> + {{ template "content" . }} + </div> + </body> +</html> +{{ end }} |