webring/ui/html/base.tmpl.html

20 lines
446 B
HTML
Raw Permalink Normal View History

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