mmote.ru/themes/mmotium/layouts/_default/baseof.html

31 lines
1.1 KiB
HTML
Raw Normal View History

2023-01-01 18:21:01 +03:00
<!DOCTYPE html>
<html lang="{{ site.LanguageCode }}">
<head>
<meta charset="UTF-8">
2023-01-07 11:53:48 +03:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:locale" content="{{ site.LanguageCode }}">
<meta property="og:site_name" content="{{ .Site.Title }}">
2023-01-08 13:46:38 +03:00
<link rel="canonical" href="{{ .Permalink }}" />
2023-01-01 18:21:01 +03:00
<link rel="icon" href="/images/favicon.png" type="image/png">
{{ block "head_meta" . }}{{ end }}
{{ $sassOptions := (dict "outputStyle" "compressed") -}}
{{- $style := resources.Get "css/style.scss" | resources.ToCSS $sassOptions | fingerprint -}}
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
<script src="/vendor/spotlight.bundle.js?v=0.7.8" defer></script>
<title>{{ block "title" . }}{{ with .Params.Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{ end }}</title>
</head>
<body>
{{ partial "header.html" . }}
<div class="container">
{{ block "main" . }}{{ end }}
</div>
{{ partial "footer.html" . }}
</body>
</html>