2024-02-23 04:35:34 +00:00
|
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta property="og:type" content="website">
|
2024-05-07 02:33:10 +00:00
|
|
|
<meta property="og:url" content="{{ .Page.Permalink }}">
|
2024-02-23 04:35:34 +00:00
|
|
|
<meta property="og:title" content="{{ .Page.Title }}">
|
2024-05-06 04:19:08 +00:00
|
|
|
<meta property="og:site_name" content="{{ .Site.Title }}">
|
|
|
|
<meta property="og:description" content="{{ .Site.Params.About }}">
|
|
|
|
<meta property="og:image" content="{{ .Site.Params.OgImage }}">
|
2024-02-23 04:35:34 +00:00
|
|
|
<title>{{ .Page.Title }}</title>
|
2024-05-06 04:43:38 +00:00
|
|
|
{{ partial "css.html" . }}
|
2024-02-23 04:35:34 +00:00
|
|
|
<link rel="icon" type="image/png" href="/favicon.png">
|
2024-05-06 04:19:08 +00:00
|
|
|
<link rel="webmention" href="{{ .Site.Params.Webmentions }}" />
|
|
|
|
<link rel="pingback" href="{{ .Site.Params.Pingbacks }}" />
|
2024-02-23 04:35:34 +00:00
|
|
|
{{ range .AlternativeOutputFormats -}}
|
|
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
|
|
|
{{ end -}}
|
|
|
|
</head>
|