blob: 9c13b624dcbf303ceded87430285a47aa71fb017 [file] [log] [blame]
<!--
Copyright 2023 The Go Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
{{define "base"}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{block "title" .}}{{.Title}}{{end}}</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" href="/base.css">
</head>
<body>
<div class="Container">
<div class="Content">{{block "content" .}}{{.Content}}{{end}}</div>
</div>
</body>
</html>
{{end}}