<head>
    {{ if .Site.Params.forceRedirect }}
        <script>
            if (location.host != new URL("{{ .Site.BaseURL }}").host) location.href = "{{ .Site.BaseURL }}"
        </script>
    {{ end }}
    <meta name="viewport" content="width=device-width" />
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=7" />

    {{ if .OutputFormats.Get "RSS" }}
        {{ with .OutputFormats.Get "RSS" }}
          <link href="{{ .Permalink }}" rel="alternate" type="application/rss+xml" title="{{ $.Site.Title }}" />
          <link href="{{ .Permalink }}" rel="feed" type="application/rss+xml" title="{{ $.Site.Title }}" />
        {{ end }}
    {{ end }}

    {{- partial "head_icons.html" . -}}

    <title>
        {{ if and (.Title) (ne .Title .Site.Title) }}
            {{ .Title }}  &ndash;
        {{ end }}
        {{ .Site.Title | default "Ficurinia" }}
    </title>
    <link href="/symbols-nerd-font/symbols-nerd-font.css" rel="stylesheet" />
    <link href="/jetbrains-mono/jetbrains-mono.css" rel="stylesheet" />
    {{ $style := resources.Get "/scss/style.scss" | resources.ExecuteAsTemplate "/scss/style.scss" . | resources.ToCSS (dict "targetPath" "css/styles.css" "outputStyle" "compressed" "enableSourceMap" "true") | resources.Fingerprint "sha512" }}
    <link type=text/css rel=stylesheet href={{ $style.Permalink }} integrity="{{ $style.Data.Integrity }}" />
    {{- partial "inject/head.html" . -}}
    {{- partial "head_meta_seo.html" . -}}
    {{- partial "head_meta_opengraph.html" . -}}
    <link rel="manifest" href="/manifest/index.json" />
</head>