You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
936 B
Cheetah
26 lines
936 B
Cheetah
1 year ago
|
{{define "base"}}
|
||
|
<!doctype html>
|
||
|
<html lang='en'>
|
||
|
<head>
|
||
|
<meta charset='utf-8'>
|
||
|
<title>{{template "title" .}} - Snippetbox</title>
|
||
|
<!-- Link to the CSS stylesheet and favicon -->
|
||
|
<link rel='stylesheet' href='/static/css/main.css'>
|
||
|
<link rel='shortcut icon' href='/static/img/favicon.ico' type='image/x-icon'>
|
||
|
<!-- Also link to some fonts hosted by Google -->
|
||
|
<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>
|
||
|
{{template "main" .}}
|
||
|
</main>
|
||
|
<footer>Powered by <a href='https://golang.org/'>Go</a></footer>
|
||
|
<!-- And include the JavaScript file -->
|
||
|
<script src="/static/js/main.js" type="text/javascript"></script>
|
||
|
</body>
|
||
|
</html>
|
||
|
{{end}}
|