<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	{{ $title := cond .IsHome .Site.Title (printf "%s" (partial "kanji.html" .Title) | printf "%s%s" (cond (and (eq .Kind "term") (eq .Data.Singular "tag")) "#" "") | printf "%s") }}
	<meta property="og:site_name" content="{{ .Site.Title }}">
	<meta property="og:title" content="{{ $title }}">
	<meta name="twitter:title" content="{{ $title }}">
	{{ with .Resources.GetMatch "{cover.*,*.jpg,*.png,*.jpeg}" }}
		{{ with .Permalink | absURL }}
			<meta property="og:image" content="{{ . }}">
			<meta name="twitter:image" content="{{ . }}">
		{{ end }}
	{{ end }}
	{{ with .Params.description }}
		<meta property="og:description" content="{{ . }}">
		<meta name="description" content="{{ . }}">
		<meta name="twitter:description" content="{{ . }}">
	{{ end }}
	<meta property="og:type" content="{{ cond (eq .Kind "page") "article" "website" }}">
	{{ if eq .Kind "page" }}
		{{ with .PublishDate }}
			<meta property="og:article:published_time" content="{{ partial "datestamp.html" . }}">
		{{ end }}
		{{ with .Lastmod }}
			<meta property="og:article:modified_time" content="{{ partial "datestamp.html" . }}">
		{{ end }}
		{{ with .ExpiryDate }}
			<meta property="og:article:expiration_time" content="{{ partial "datestamp.html" . }}">
		{{ end }}
		{{ with .Params.tags }}
			{{ range . }}
				<meta property="og:article:tag" content="{{ . }}">
			{{ end }}
		{{ end }}
		{{ with .Site.Params.AuthorProfile }}
			<meta property="og:article:author" content="{{ . }}">
		{{ end }}
	{{ end }}
	{{ with .Site.Params.Author }}
		<meta name="author" content="{{ . }}">
	{{ end }}
	<meta property="og:url" content="{{ .Permalink }}">
	<meta name="twitter:card" content="summary">
	{{ with .Site.Params.SiteTwitter }}
		<meta name="twitter:site" content="@{{ . }}">
	{{ end }}
	{{ with .Site.Params.AuthorTwitter }}
		<meta name="twitter:creator" content="@{{ . }}">
	{{ end }}
	{{ with .Site.Params.ThemeColor }}
		<meta name="theme-color" content="{{ . }}">
	{{ end }}
	<link rel="stylesheet" href="/css/normalize.css">
	<link rel="stylesheet" href="/css/sakura{{ if isset .Site.Params "theme" }}-{{ .Site.Params.Theme }}{{ end }}.css">
	{{ if isset .Site.Params "matomositeid" }}
	<script>
		var _paq = window._paq = window._paq || [];
		/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
		_paq.push(['trackPageView']);
		_paq.push(['enableLinkTracking']);
		(function() {
			var u="https://{{ .Site.Params.MatomoURL }}/";
			_paq.push(['setTrackerUrl', u+'matomo.php']);
			_paq.push(['setSiteId', '{{ .Site.Params.MatomoSiteId }}']);
			var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
			g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
		})();
	</script>
	{{ end }}
	<title>{{ $title }}{{ if not .IsHome }} - {{ .Site.Title }}{{ end }}</title>
</head>