webring/ui/html/base.tmpl.html

19 lines
366 B
HTML

{{define "base"}}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{template "title" .}} - 32-Bit Cafe</title>
</head>
<body>
<header>
<h1>Webring</h1>
{{template "nav" .}}
</header>
<main>
{{template "main" .}}
</main>
</body>
</html>
{{end}}