162 lines
6.7 KiB
HTML
162 lines
6.7 KiB
HTML
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<title itemprop="name">
|
|
{{- block "title" . -}}
|
|
{{- with .Params.Title -}} {{ . }} | {{ end }}
|
|
{{- .Site.Title -}}
|
|
{{- end -}}
|
|
</title>
|
|
|
|
<!-- Set dynamic title for metadata -->
|
|
{{ $scratch := newScratch }}
|
|
{{ with .Params.Title }}
|
|
{{ $scratch.Set "title" . }}
|
|
{{ $scratch.Add "title" " | " }}
|
|
{{ end }}
|
|
{{ $scratch.Add "title" .Site.Title }}
|
|
|
|
<meta property="og:title" content={{ $scratch.Get "title" }} />
|
|
<meta name="twitter:title" content={{ $scratch.Get "title" }} />
|
|
<meta itemprop="name" content={{ $scratch.Get "title" }} />
|
|
<meta name="application-name" content={{ $scratch.Get "title" }} />
|
|
<meta property="og:site_name" content={{ .Site.Title }} />
|
|
|
|
<!-- Set description -->
|
|
{{ if .Description }}
|
|
{{ $scratch.Set "description" .Description}}
|
|
{{ else if .Site.Params.description }}
|
|
{{ $scratch.Set "description" .Site.Params.description }}
|
|
{{ end }}
|
|
|
|
<meta name="description" content={{ $scratch.Get "description" }} />
|
|
<meta itemprop="description" content={{ $scratch.Get "description" }} />
|
|
<meta property="og:description" content={{ $scratch.Get "description" }} />
|
|
<meta name="twitter:description" content={{ $scratch.Get "description" }} />
|
|
|
|
<!-- Set link -->
|
|
<base href="{{ .Permalink }}">
|
|
<link rel="canonical" href="{{ .Permalink }}" itemprop="url" />
|
|
<meta name="url" content="{{ .Permalink }}" />
|
|
<meta name="twitter:url" content="{{ .Permalink }}" />
|
|
<meta property="og:url" content="{{ .Permalink }}" />
|
|
|
|
<!-- Set language -->
|
|
<meta property="og:locale" content="{{ .Language.Lang }}">
|
|
<meta name="language" content="{{ .Site.Params.LanguageName }}">
|
|
{{ range .AllTranslations }}
|
|
<link rel="alternate" hreflang="{{ .Language.Lang }}" href="{{ .Permalink }}" title="{{ .Language.LanguageName }}">
|
|
{{ end }}
|
|
|
|
<!-- Set image -->
|
|
{{ with .Params.images }}
|
|
{{ $image := index . 0 }}
|
|
<meta itemprop="image" content="{{ $image | absURL }}" />
|
|
<meta property="og:image" content="{{ $image | absURL }}" />
|
|
<meta name="twitter:image" content="{{ $image | absURL }}" />
|
|
<meta name="twitter:image:src" content="{{ $image | absURL }}" />
|
|
{{ else }}
|
|
<meta itemprop="image" content="{{ .Site.Params.homepageimage | absURL }}" />
|
|
<meta property="og:image" content="{{ .Site.Params.homepageimage | absURL }}" />
|
|
<meta name="twitter:image" content="{{ .Site.Params.homepageimage | absURL }}" />
|
|
<meta name="twitter:image:src" content="{{ .Site.Params.homepageimage | absURL }}" />
|
|
{{ end }}
|
|
|
|
<!-- Set date -->
|
|
<meta property="og:updated_time" content={{ .Lastmod.Format "2006-01-02T15:04:05Z0700" | safeHTML }} />
|
|
<!-- Sitemap & RSS Feed Tags -->
|
|
<link rel="sitemap" type="application/xml" title="Sitemap" href="{{ .Site.BaseURL }}sitemap.xml" />
|
|
{{ 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 }}
|
|
|
|
<!-- Set tags for article pages -->
|
|
{{ if eq .Section "post" }}
|
|
<!-- Pagination meta tags for list pages only -->
|
|
{{ $paginator := .Paginate (where .Pages "Section" "post") }}
|
|
{{ if $paginator }}
|
|
<link rel="first" href="{{ $paginator.First.URL }}">
|
|
<link rel="last" href="{{ $paginator.Last.URL }}">
|
|
{{ if $paginator.HasPrev }}
|
|
<link rel="prev" href="{{ $paginator.Prev.URL }}">
|
|
{{end }}
|
|
{{ if $paginator.HasNext }}
|
|
<link rel="next" href="{{ $paginator.Next.URL }}">
|
|
{{end }}
|
|
{{end }}
|
|
<meta property="og:type" content="article" />
|
|
<meta property="article:publisher" content="{{ .Site.Params.facebook }}" />
|
|
<meta property="og:article:published_time" content={{ .Date.Format "2006-01-02T15:04:05Z0700" | safeHTML }} />
|
|
<meta property="article:published_time" content={{ .Date.Format "2006-01-02T15:04:05Z0700" | safeHTML }} />
|
|
{{ if .Params.authors }}
|
|
{{ $authors := delimit .Params.authors ", " }}
|
|
<meta property="og:article:author" content="{{ $authors }}" />
|
|
<meta property="article:author" content="{{ $authors }}" />
|
|
<meta name="author" content="{{ $authors }}" />
|
|
{{ else }}
|
|
{{ $authors := .Site.Params.author }}
|
|
<meta property="og:article:author" content="{{ $authors }}" />
|
|
<meta property="article:author" content="{{ $authors }}" />
|
|
<meta name="author" content="{{ $authors }}" />
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
<!-- Set tags for single pages -->
|
|
{{ if ne .Section "post" }}
|
|
<meta property="og:type" content="website" />
|
|
<meta name="author" content="{{ .Site.Params.author }}" />
|
|
{{ end }}
|
|
|
|
<!-- Set favicon tags -->
|
|
<link rel="shortcut icon" href="{{ "favicon.ico" | absURL }}" />
|
|
<link rel="icon" type="image/x-icon" sizes="16x16 32x32" href="{{ "favicon.ico" | absURL }}" />
|
|
<link rel="apple-touch-icon" href="{{ "apple-touch-icon.png" | absURL }}" sizes="180x180">
|
|
<link rel="icon" href="{{ "favicon-32x32.png" | absURL }} " sizes="32x32" type="image/png">
|
|
<link rel="icon" href="{{ "favicon-16x16.png" | absURL }}" sizes="16x16" type="image/png">
|
|
<link rel="manifest" href="{{ "manifest.json" | absURL }}">
|
|
<link rel="mask-icon" href="{{ "safari-pinned-tab.svg" | absURL }}" color="#0c344b">
|
|
|
|
<!-- Set search engine tags -->
|
|
<meta name="robots" content="index,follow" />
|
|
<meta name="googlebot" content="index,follow" />
|
|
|
|
<!-- Set other tags -->
|
|
<meta name="keywords" content="" />
|
|
<meta name="imagemode" content="force" />
|
|
<meta name="coverage" content="Worldwide" />
|
|
<meta name="distribution" content="Global" />
|
|
<meta name="HandheldFriendly" content="True" />
|
|
<meta name="msapplication-tap-highlight" content="no" />
|
|
<meta name="apple-mobile-web-app-title" content="{{ .Site.Params.header }}" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
<meta name="apple-touch-fullscreen" content="yes" />
|
|
|
|
{{ 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 "panaetius-theme" }}
|
|
{{ range $vendor := .assets }}
|
|
{{ if $vendor.css }}
|
|
<link rel="stylesheet" href="{{ print "dist/" $vendor.css | relURL }}">
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ 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" . -}}
|