diff options
| author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2025-01-02 16:57:57 -0800 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2025-01-02 16:57:57 -0800 |
| commit | 94dd1ca677c716975d43f323c97ea26f8fd4c962 (patch) | |
| tree | 7eaf4f32af0a180457f935d5f2fdff941018a12f /templates/base.html | |
| download | something-94dd1ca677c716975d43f323c97ea26f8fd4c962.tar.gz something-94dd1ca677c716975d43f323c97ea26f8fd4c962.zip | |
initial commit by simponic-infra
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..2a9dacb --- /dev/null +++ b/templates/base.html @@ -0,0 +1,16 @@ +{{ define "base" }} +<!DOCTYPE html> +<html> + <head> + <title>something simponic.</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 }} |
