theme-blog-ewen/layouts/partials/header.html

36 lines
972 B
HTML
Raw Normal View History

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 }}
2020-12-10 15:13:38 +00:00
<link href="{{ "/index.xml" | absLangURL }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
2020-04-12 08:16:04 +00:00
{{ 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 }}"/>
2020-11-14 17:16:45 +00:00
<link rel="icon" type="image/png" href="/favicon.png">
2020-04-12 08:16:04 +00:00
<link rel="manifest" href="/site.webmanifest">
<link rel="canonical" href="{{ .Permalink }}">
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>