2020-10-06 01:20:54 +02:00
|
|
|
<!DOCTYPE html>
|
2020-11-22 23:49:38 +01:00
|
|
|
<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=">
|
2020-11-13 18:40:46 +01:00
|
|
|
{{ $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>
|