31 lines
No EOL
1.4 KiB
HTML
31 lines
No EOL
1.4 KiB
HTML
<head>
|
|
<meta name="description"
|
|
content="{{ if .Params.summary }}{{ .Params.summary }}{{ else if .Site.Params.Description }}{{ .Site.Params.Description }}{{ else }}Hardcoded description; the author should update :){{ end }}" />
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" />
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<meta name="color-scheme" content="dark light">
|
|
{{ template "_internal/opengraph.html" . }}
|
|
<title>{{ if .Title }}{{ .Title }}{{ else }}{{ .Site.Title }}{{ end }}</title>
|
|
{{ with .Site.Params.favIcon }}
|
|
{{ if .ico }}
|
|
<link rel="icon" type="image/x-icon" href="{{ .ico }}">
|
|
{{ end }}
|
|
{{ if .small }}
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ .small }}">
|
|
{{ end }}
|
|
{{ if .big }}
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ .big }}">
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ with .Site.Params.tracking }}
|
|
<script src="{{ . }}"></script>
|
|
{{ end }}
|
|
{{ $template := resources.Get "scss/index.scss" }}
|
|
{{ if $template }}
|
|
{{ $index := $template | resources.ExecuteAsTemplate "css/index.scss" . | resources.ToCSS (dict "outputStyle" "compressed") | fingerprint }}
|
|
<link rel="stylesheet" type="text/css" href="{{ $index.RelPermalink }}">
|
|
{{ end }}
|
|
<link rel="stylesheet" type="text/css" href="/icons/fontawesome.css">
|
|
<script src="/js/index.js"></script>
|
|
</head> |