Files
alphabreed/hugo/layouts/login/baseof.html
2026-02-19 18:37:05 +01:00

23 lines
870 B
HTML

<!DOCTYPE html>
<html class="no-js" lang="de">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
{{ with .Params.description -}}
<meta name="description" content="{{ . }}">
{{- end }}
<meta name="author" content="Stefan Mühlinghaus">
<meta name="viewport" content="initial-scale=1, user-scalable=no">
<link rel="icon" type="image/vnd.microsoft.icon" href="/img/favicon.ico">
<link rel="preload" href="/css/pico-2.1.1.min.css" as="style">
<link rel="stylesheet" href="/css/pico-2.1.1.min.css">
<script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)</script>
<script defer src="/js/alpine-3.15.3.min.js"></script>
</head>
<body>
<main class="container">
{{ .Content }}
</main>
</body>
</html>