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.
19 lines
438 B
Cheetah
19 lines
438 B
Cheetah
7 days ago
|
{{define "base" -}}
|
||
|
<!doctype html>
|
||
|
<html lang='en'>
|
||
|
<head>
|
||
|
<meta charset='utf-8'>
|
||
|
<title>{{template "title" .}}</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<h1><a href='/'>Ratchet</a></h1>
|
||
|
</header>
|
||
|
{{template "nav" .}}
|
||
|
<main>
|
||
|
{{template "main" .}}
|
||
|
</main>
|
||
|
<footer>Powered by <a href='https://golang.org/'>Go</a></footer>
|
||
|
</body>
|
||
|
</html>
|
||
|
{{end}}
|