diff options
| author | Lizzy Hunt <lizzy.hunt@usu.edu> | 2024-03-26 16:00:05 -0600 |
|---|---|---|
| committer | Lizzy Hunt <lizzy.hunt@usu.edu> | 2024-03-26 16:00:05 -0600 |
| commit | fe22956d5dbdeb2b80a9e56b46abe2be9f2bfcdb (patch) | |
| tree | 6111f03c2da4eb42aff03cda72157a8961da27e8 /templates/base.html | |
| parent | 27aab70386c68f3a0f22c52e72b91cf16b289100 (diff) | |
| download | hatecomputers.club-fe22956d5dbdeb2b80a9e56b46abe2be9f2bfcdb.tar.gz hatecomputers.club-fe22956d5dbdeb2b80a9e56b46abe2be9f2bfcdb.zip | |
initial commit
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/templates/base.html b/templates/base.html index d855b51..fcd978e 100644 --- a/templates/base.html +++ b/templates/base.html @@ -6,14 +6,32 @@ <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="icon" href="/static/img/favicon.svg"> <link rel="stylesheet" type="text/css" href="/static/css/styles.css"> + + <meta property="og:type" content="website"> + <meta property="og:url" content="https://hatecomputers.club"> + <meta property="og:title" content="hatecomputers.club"> + <meta property="og:description" content="be decent at computer but hate. really bad for human."> + <meta property="og:image:secure_url" content="https://tunnel.simponic.xyz/static/img/favicon.svg"> + <meta property="og:image:secure" content="https://tunnel.simponic.xyz/static/img/favicon.svg"> + <script src="/static/js/util/setThemeBeforeRender.js"></script> </head> <body> <div id="content" class="container"> - {{ template "content" . }} + <div class="header"> + <h1>hatecomputers.club</h1> + <a href="javascript:void(0);" id="theme-switcher"></a> + </div> + <hr> + + <div id="content"> + {{ template "content" . }} + </div> + <p class="blinky">hi</p> </div> - <script src="/static/js/script.js"></script> + <script data-main="/static/js/script.js" src="/static/js/require.js"></script> </body> </html> |
