56 lines
2.2 KiB
HTML
56 lines
2.2 KiB
HTML
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<title>
|
|
{{ block "title" . }}
|
|
{{ with .Params.Title }} {{ . }} | {{ end }}
|
|
{{ .Site.Title }}
|
|
{{ end }}
|
|
</title>
|
|
|
|
{{- if .Description -}}
|
|
<meta name="description" content="{{ .Description }}">
|
|
{{- else if .Site.Params.description -}}
|
|
<meta name="description" content="{{ .Site.Params.description }}">
|
|
{{- end -}}
|
|
|
|
<meta name="author" content="{{ if .Params.authors }}{{ delimit .Params.authors ", " }}{{ else }}{{ .Site.Params.author }}{{ end }}">
|
|
|
|
<link rel="apple-touch-icon" href="{{ "apple-touch-icon.png" | relURL }}" sizes="180x180">
|
|
<link rel="icon" href="{{ "favicon-32x32.png" | relURL }} " sizes="32x32" type="image/png">
|
|
<link rel="icon" href="{{ "favicon-16x16.png" | relURL }}" sizes="16x16" type="image/png">
|
|
<link rel="manifest" href="{{ "manifest.json" | relURL }}">
|
|
<link rel="mask-icon" href="{{ "safari-pinned-tab.svg" | relURL }}" color="#0c344b">
|
|
<link rel="icon" href="{{ "favicon.ico" | relURL }}">
|
|
|
|
{{ if .Site.Params.prismJS.enable }}
|
|
{{ if .Site.Params.prismJS.theme }}
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.17.1/themes/prism-{{ .Site.Params.prismJS.theme }}.min.css">
|
|
{{ else }}
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.17.1/themes/prism.min.css">
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ with index .Site.Data "chunky-poster" }}
|
|
{{ range $vendor := .assets }}
|
|
{{ if $vendor.css }}
|
|
<link rel="stylesheet" href="{{ print "dist/" $vendor.css | relURL }}">
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ range .Site.Params.customCSS -}}
|
|
<link rel="stylesheet" href="{{ "css/" | relURL }}{{ . }}">
|
|
{{ end }}
|
|
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
{{- 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 -}}
|
|
|
|
{{- template "_internal/opengraph.html" . -}}
|
|
{{- template "_internal/google_news.html" . -}}
|
|
{{- template "_internal/schema.html" . -}}
|
|
{{- template "_internal/twitter_cards.html" . -}}
|