39 lines
2.0 KiB
HTML
39 lines
2.0 KiB
HTML
<!DOCTYPE HTML>
|
|
<!--
|
|
Massively by HTML5 UP
|
|
html5up.net | @ajlkn
|
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
|
-->
|
|
<html lang='{{ .Site.Language.Lang | default "en-us" }}'>
|
|
<head>
|
|
<title>{{ if eq (.Site.Title) (.Title) }}{{ .Site.Title }}{{ else }}{{ .Title }} · {{ .Site.Title }}{{ end }}</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
|
<!-- CSS -->
|
|
{{ if hugo.IsServer }}
|
|
{{ $style := resources.Get "scss/main.scss" | resources.ExecuteAsTemplate "main.scss" . | toCSS (dict "targetPath" "assets/css/main.css" "enableSourceMap" true) }}
|
|
<link rel="stylesheet" href="{{ ($style).RelPermalink }}">
|
|
{{ else }}
|
|
{{ $style := resources.Get "scss/main.scss" | resources.ExecuteAsTemplate "main.scss" . | toCSS (dict "targetPath" "assets/css/main.css" "enableSourceMap" false) }}
|
|
<link rel="stylesheet" href="{{ ($style | minify).RelPermalink }}">
|
|
{{ end }}
|
|
{{ with .Site.Params.favicon }}
|
|
<link rel="shortcut icon" href="/img/favicon.ico">
|
|
{{ end }}
|
|
{{ $noscript := resources.Get "scss/noscript.scss" | resources.ExecuteAsTemplate "noscript.scss" . | toCSS (dict "targetPath" "assets/css/noscript.css" "enableSourceMap" false) }}
|
|
<noscript><link rel="stylesheet" href='{{ $noscript.RelPermalink }}' /></noscript>
|
|
<link rel="stylesheet" href="/css/yandex-maps.css">
|
|
<link rel="stylesheet" href="/css/footer-nav.css">
|
|
<link rel="stylesheet" href="/css/mobile-pagination.css">
|
|
<link rel="stylesheet" href="/css/back-to-top.css">
|
|
<link rel="stylesheet" href="/css/typography-improvements.css">
|
|
<link rel="stylesheet" href="/css/about-site.css">
|
|
<link rel="stylesheet" href="/css/copyright-visible.css">
|
|
<link rel="stylesheet" href="/css/nav-background.css">
|
|
<link rel="stylesheet" href="/css/pagination-info.css">
|
|
<link rel="stylesheet" href="/css/forms.css">
|
|
<link rel="stylesheet" href="/css/page-spacing.css">
|
|
<link rel="stylesheet" href="/css/mobile-menu.css">
|
|
{{ partial "htmlhead.custom.html" }}
|
|
</head>
|