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

24 lines
703 B
Cheetah
Raw 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>
{{template "main" .}}
</main>
<footer>Powered by <a href="https://golang.org">Go</a></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}}