a8862721cd
Static directory for public folders and business logic for the app within internal, split into domain specific folders to keep clear seperation of concerns.
34 lines
719 B
HTML
34 lines
719 B
HTML
{{define "base"}}
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{.Title}}</title>
|
|
<link rel="stylesheet" href="/static/css/reset.css">
|
|
<link rel="stylesheet" href="/static/css/index.css">
|
|
<link rel="stylesheet" href="/static/js/index.js" defer>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<nav>
|
|
<a href="/">home</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
{{template "content" .}}
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© <span id="year"></span></p>
|
|
</footer>
|
|
|
|
</body>
|
|
<script>
|
|
document.queryselector('#year').innerhtml = new date().getfullyear();
|
|
</script>
|
|
</html>
|
|
{{end}}
|