s1llyw0rdz/web/handler/html/common/layout.html

16 lines
365 B
HTML
Raw Normal View History

2021-11-22 09:06:23 +00:00
{{ define "layout" }}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css"/>
<title>Status</title>
{{ template "head" . }}
</head>
<body>
{{ template "content" . }}
</body>
</html>
{{ end }}
{{ define "head" }}{{ end }}