Files
portal/layouts/_default/baseof.html
2019-12-22 10:45:40 +01:00

18 lines
891 B
HTML

<!doctype html>
<html lang="{{.Site.Language.Lang }}">
<head>
<title>Ecogood portal</title>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; child-src 'none';">
<meta name="referrer" content="no-referrer">
<link rel="stylesheet" href="{{ "ecogood.css" | absURL }}"/>
<link rel="icon" href="{{ "favicon-cropped.webp" | absURL }}" sizes="32x32" />
<link rel="icon" href="{{ "favicon.webp" | absURL }}" sizes="192x192" />
<link rel="apple-touch-icon-precomposed" href="{{ "favicon.png" | absURL }}" />
<meta name="msapplication-TileImage" content="{{ "favicon.webp" | absURL }}" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body style="background-image: url({{ "background.png" | absURL }});">
{{ block "main" . }}{{ end }}
</body>
</html>