19 lines
458 B
HTML
19 lines
458 B
HTML
|
{{ define "base" }}
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>backup notify</title>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content=
|
||
|
"width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
|
||
|
<link rel="stylesheet" type="text/css" href=
|
||
|
"/static/css/styles.css">
|
||
|
</head>
|
||
|
<body data-theme="DARK">
|
||
|
<div id="content" class="container">
|
||
|
{{ template "content" . }}
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|
||
|
{{ end }}
|