hatecomputers.club/templates/base.html

39 lines
1.3 KiB
HTML
Raw Normal View History

2024-03-25 14:08:35 -04:00
{{ 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">
2024-03-26 18:00:05 -04:00
<link rel="icon" href="/static/img/favicon.svg">
2024-03-25 14:08:35 -04:00
<link rel="stylesheet" type="text/css" href="/static/css/styles.css">
2024-03-26 18:00:05 -04:00
<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>
2024-03-25 14:08:35 -04:00
</head>
<body>
<div id="content" class="container">
2024-03-26 18:00:05 -04:00
<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>
2024-03-25 14:08:35 -04:00
</div>
2024-03-26 18:00:05 -04:00
<script data-main="/static/js/script.js" src="/static/js/require.js"></script>
2024-03-25 14:08:35 -04:00
</body>
</html>
{{ end }}