2020-04-12 08:16:04 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" {{ with .Site.LanguageCode }} lang="{{ . }}"{{ end }}>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8"/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
|
|
{{ if eq .IsHome false }}
|
|
|
|
<title>{{ .Title }} | {{ .Site.Title }}</title>
|
|
|
|
{{ else }}
|
|
|
|
<title>{{ .Site.Title }}</title>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Site.Params.Info.enableSocial }}
|
|
|
|
<!-- Social here. -->
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Site.Params.rss }}
|
|
|
|
<link href="{{ .Site.RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
|
|
|
|
{{ end }}
|
|
|
|
|
2020-11-13 15:21:32 +00:00
|
|
|
{{ template "_internal/opengraph.html" . }}
|
|
|
|
|
2020-04-12 08:16:04 +00:00
|
|
|
<link rel="stylesheet" href="{{ "css/style.css" | relURL }}"/>
|
|
|
|
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
|
|
|
|
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
|
|
|
|
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
2020-04-25 09:54:03 +00:00
|
|
|
|
2020-04-12 08:16:04 +00:00
|
|
|
</head>
|
2020-05-13 07:57:49 +00:00
|
|
|
{{ if .Site.Params.matomoAnalytics }}
|
|
|
|
{{- partial "matomo" . -}}
|
|
|
|
{{ end }}
|
2020-04-12 08:16:04 +00:00
|
|
|
|
|
|
|
<body>
|