www.franconian.net/layouts/_default/baseof.html

18 lines
495 B
HTML
Raw Normal View History

2020-10-06 01:20:54 +02:00
<!DOCTYPE html>
<html lang="{{ .Site.Language.Lang }}">
2020-10-06 01:20:54 +02:00
<head>
<meta charset="utf-8">
<meta name="viewport" value="width=device-width,initial-scale=1.0">
<title>{{ block "title" . }}
{{ .Site.Title }}
{{ end }}</title>
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
{{ $style := resources.Get "style.scss" | resources.ToCSS (dict "outputStyle" "compressed") }}
2020-10-06 01:20:54 +02:00
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
</head>
<body>
{{ block "main" . }}
{{ end }}
</body>
</html>