Files
hspguard/templates/layout/base.html

26 lines
667 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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{{ .Title }}</title>
<link rel="stylesheet" href="/static/css/base.css" >
<link rel="icon" type="image/png" href="/static/icon.png">
</head>
<body>
<!-- <header> -->
<!-- <h1>{{ .Title }}</h1> -->
<!-- </header> -->
<div class="container">
<main class="modal-box">
{{ block "content" . }}{{ end }}
</main>
{{ template "footer" . }}
</div>
</body>
</html>
{{ end }}