summaryrefslogtreecommitdiff
path: root/web/layouts/baseof.html
blob: 96d8e07a08f6f617f0621a6bae886b51fc400ecd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<link rel="stylesheet" type="text/css" href="static/simple.css">
		<title>{{ .Site.Title }}</title>
	</head>
	<body>
		{{ block "main" . }}{{end}}
	</body>
</html>