2023-07-11 07:38:05 +00:00
|
|
|
{{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>
|
2023-07-22 08:23:47 +00:00
|
|
|
{{template "nav" .}}
|
2023-07-11 07:38:05 +00:00
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
{{template "main" .}}
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{end}}
|