learn-go/snippetbox/ui/html/base.tmpl
2024-01-23 11:19:53 -08:00

19 lines
399 B
Cheetah

{{define "base"}}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{template "title" .}} - Snippetbox</title>
</head>
<body>
<header>
<h1><a href="/">Snippetbox</a></h1>
</header>
{{template "nav" .}}
<main>
{{template "main" .}}
</main>
<footer>Powered by <a href="https://golang.org">Go</a></footer>
</body>
</html>
{{end}}