2020-02-02 17:13:02 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="format-detection" content="telephone=no"/>
|
|
|
|
|
2020-03-23 20:56:48 +00:00
|
|
|
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} | {{ .Site.Title }}{{ end }}</title>
|
2020-02-02 17:13:02 +00:00
|
|
|
<!-- Icons -->
|
2024-11-29 13:20:38 +00:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ "/" | relURL }}favicon/apple-touch-icon.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ "/" | relURL }}favicon/favicon-32x32.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ "/" | relURL }}favicon/favicon-16x16.png">
|
|
|
|
<link rel="manifest" href="{{ "/" | relURL }}favicon/manifest.json">
|
|
|
|
<link rel="mask-icon" href="{{ "/" | relURL }}favicon/safari-pinned-tab.svg" color="#FF3DB4">
|
2020-02-02 17:13:02 +00:00
|
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
|
|
|
|
<!-- Styles -->
|
|
|
|
<!-- Use Hugo Pipes to process the Sass file (convert to CSS, minify, and add a hash) -->
|
|
|
|
{{ $main_style := resources.Get "css/main.scss" | toCSS | minify | fingerprint }}
|
|
|
|
<link rel="stylesheet" href="{{ $main_style.Permalink }}"/>
|
|
|
|
|
|
|
|
<!-- Uncomment to add custom styles -->
|
|
|
|
<!-- Modify the custom.scss file inside assets > css to use scss -->
|
2024-11-29 13:20:38 +00:00
|
|
|
<!-- {{ $custom_style := resources.Get "css/custom.scss" | toCSS | minify | fingerprint }}
|
2020-02-02 17:13:02 +00:00
|
|
|
<link rel="stylesheet" href="{{ $custom_style.Permalink }}"/> -->
|
|
|
|
|
|
|
|
<!-- Modify the custom.css file inside static > css to use vanilla css -->
|
2024-11-29 13:20:38 +00:00
|
|
|
<link type="text/css" rel="stylesheet" href="{{ "/" | relURL }}css/custom.css">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="{{ "/" | relURL }}css/bootstrap.min.css">
|
|
|
|
|
|
|
|
{{ with .OutputFormats.Get "RSS" }}
|
2020-02-02 17:13:02 +00:00
|
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
|
|
|
{{ end }}
|
2024-11-22 13:45:45 +00:00
|
|
|
{{- if not hugo.IsServer -}}
|
2020-04-03 10:48:44 +00:00
|
|
|
{{ template "_internal/google_analytics.html" . }}
|
|
|
|
{{- end -}}
|
2020-03-23 20:26:56 +00:00
|
|
|
</head>
|