17 lines
460 B
HTML
17 lines
460 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">
|
||
|
|
<title>{{if .Title}}{{.Title}} — {{end}}CrowdSec Dashy</title>
|
||
|
|
<link rel="stylesheet" href="/static/css/app.css">
|
||
|
|
</head>
|
||
|
|
<body style="background:#080b10;min-height:100vh">
|
||
|
|
{{template "content" .}}
|
||
|
|
{{block "scripts" .}}{{end}}
|
||
|
|
<script>document.body.classList.add('ready');</script>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
{{end}}
|