website/layouts/_default/baseof.html
vrifox cb51826059
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
add descriptions
2023-05-17 15:26:00 +02:00

24 lines
976 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="{{ .Page.Lang }}">
<head>
<title>{{ with .Title }} {{ . }} {{ end }}{{ .Site.Title }}</title>
{{ block "stylesheet" . }}{{ end }}
<link href="/gpg.pub" rel="pgpkey authn" />
<link href="https://social.anoxinon.de/@vri" rel="me" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content='
{{- if (isset .Params "description") -}}
{{- index .Params "description" }} {{ .Site.Title -}}
{{- else if (isset .Params "title") -}}
{{- index .Params "title" }} {{ .Site.Title -}}
{{- end -}}
'>
</head>
<body id="{{ with .File }}{{ .ContentBaseName }}{{ end }}" class="{{ .Page.Section }}">
{{- block "header" . }}{{ end }}
{{ partial "sidebar.html" . }}
{{- block "main" . }}{{ end }}
{{ partial "footer.html" . }}
</body>
</html>