learn-go/snippetbox/ui/html/base.tmpl

29 lines
808 B
Cheetah
Raw Permalink Normal View History

2024-01-23 19:19:53 +00:00
{{define "base"}}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{template "title" .}} - Snippetbox</title>
2024-01-23 22:08:59 +00:00
<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">
2024-01-23 19:19:53 +00:00
</head>
<body>
<header>
<h1><a href="/">Snippetbox</a></h1>
</header>
{{template "nav" .}}
<main>
2024-02-07 05:37:06 +00:00
{{with .Flash}}
<div class="flash">{{.}}</div>
{{end}}
2024-01-23 19:19:53 +00:00
{{template "main" .}}
</main>
2024-01-25 23:43:07 +00:00
<footer>
Powered by <a href="https://golang.org">Go</a> in {{.CurrentYear}}
</footer>
2024-01-23 22:08:59 +00:00
<script src="/static/js/main.js" type="text/javascript"></script>
2024-01-23 19:19:53 +00:00
</body>
</html>
2024-01-23 22:08:59 +00:00
{{end}}