learn-go/snippetbox/ui/html/base.tmpl
2024-02-06 21:37:06 -08:00

29 lines
808 B
Cheetah

{{define "base"}}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{template "title" .}} - Snippetbox</title>
<link rel="stylesheet" href="/static/css/main.css">
<link rel="shortcut icon" href="/static/img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700">
</head>
<body>
<header>
<h1><a href="/">Snippetbox</a></h1>
</header>
{{template "nav" .}}
<main>
{{with .Flash}}
<div class="flash">{{.}}</div>
{{end}}
{{template "main" .}}
</main>
<footer>
Powered by <a href="https://golang.org">Go</a> in {{.CurrentYear}}
</footer>
<script src="/static/js/main.js" type="text/javascript"></script>
</body>
</html>
{{end}}