hatecomputers.club/templates/base.html

21 lines
487 B
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">
<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 }}