22 lines
544 B
HTML
22 lines
544 B
HTML
{{ define "base.html" }}
|
|
<!doctype html>
|
|
<html lang="en" data-vapor-shell="miami-sunset">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ .Title }}</title>
|
|
<link rel="stylesheet" href="/static/css/app.css">
|
|
</head>
|
|
<body>
|
|
<main class="shell">
|
|
<header class="hero">
|
|
<p class="eyebrow">Go Web Scaffold</p>
|
|
<h1>{{ .Title }}</h1>
|
|
</header>
|
|
{{ template "content" . }}
|
|
</main>
|
|
<script src="/static/js/app.js" defer></script>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|