33 lines
1.8 KiB
HTML
33 lines
1.8 KiB
HTML
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} · {{ .Site.Title }}{{ end }}</title>
|
|
{{ $desc := .Description | default .Site.Params.description }}
|
|
<meta name="description" content="{{ $desc }}">
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
|
|
{{ $ogImage := .Site.Params.og_image | default "/images/og-default.png" }}
|
|
{{ with .Params.featured_image }}{{ $ogImage = . }}{{ end }}
|
|
{{ with .Params.images }}{{ with index . 0 }}{{ $ogImage = . }}{{ end }}{{ end }}
|
|
<meta property="og:site_name" content="{{ .Site.Title }}">
|
|
<meta property="og:title" content="{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }}{{ end }}">
|
|
<meta property="og:description" content="{{ $desc }}">
|
|
<meta property="og:type" content="{{ if .IsPage }}article{{ else }}website{{ end }}">
|
|
<meta property="og:url" content="{{ .Permalink }}">
|
|
<meta property="og:image" content="{{ $ogImage | absURL }}">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:title" content="{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }}{{ end }}">
|
|
<meta name="twitter:description" content="{{ $desc }}">
|
|
<meta name="twitter:image" content="{{ $ogImage | absURL }}">
|
|
|
|
<link rel="icon" href="{{ "images/favicon.ico" | relURL }}" sizes="any">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ "images/favicon-32.png" | relURL }}">
|
|
<link rel="apple-touch-icon" href="{{ "images/apple-touch-icon.png" | relURL }}">
|
|
{{ with .OutputFormats.Get "RSS" }}
|
|
<link rel="alternate" type="application/rss+xml" title="{{ $.Site.Title }}" href="{{ .RelPermalink }}">
|
|
{{ end }}
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
{{ partial "fonts.html" . }}
|
|
<link rel="stylesheet" href="{{ "css/style.css" | relURL }}">
|