diff options
| author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-25 12:08:35 -0600 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-25 12:08:35 -0600 |
| commit | 27aab70386c68f3a0f22c52e72b91cf16b289100 (patch) | |
| tree | 9194b74d8663cedf9d6677b5bd900404583139d4 /templates/base.html | |
| download | hatecomputers.club-27aab70386c68f3a0f22c52e72b91cf16b289100.tar.gz hatecomputers.club-27aab70386c68f3a0f22c52e72b91cf16b289100.zip | |
initial commit
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..d855b51 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,20 @@ +{{ define "base" }} + +<!DOCTYPE html> +<html> + <head> + <title>hatecomputers.club</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> + <div id="content" class="container"> + {{ template "content" . }} + </div> + + <script src="/static/js/script.js"></script> + </body> +</html> + +{{ end }} |
