mirror of
https://github.com/Extroonie/extroonie.com.git
synced 2026-07-07 07:06:42 -07:00
69 lines
2.2 KiB
HTML
69 lines
2.2 KiB
HTML
<!doctype html>
|
|
<html
|
|
lang="{{ .Site.LanguageCode }}"
|
|
itemscope
|
|
itemtype="http://schema.org/WebSite"
|
|
>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
{{ block "title" . }}
|
|
<title>
|
|
{{ if .IsHome }}{{ .Site.Title }}{{ else if .Title }}{{ .Title }} | {{
|
|
.Site.Title }}{{ else }}{{ .Site.Title }}{{ end }}
|
|
</title>
|
|
{{ end }}
|
|
|
|
<meta
|
|
name="description"
|
|
content="{{ .Description | default .Site.Params.description }}"
|
|
/>
|
|
<meta name="author" content="{{ .Site.Params.author }}" />
|
|
<meta name="generator" content="Hugo {{ hugo.Version }}" />
|
|
|
|
<meta
|
|
property="og:title"
|
|
content="{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} | {{ .Site.Title }}{{ end }}"
|
|
/>
|
|
<meta
|
|
property="og:description"
|
|
content="{{ .Description | default .Site.Params.description }}"
|
|
/>
|
|
<meta
|
|
property="og:type"
|
|
content="{{ if .IsPage }}article{{ else }}website{{ end }}"
|
|
/>
|
|
<meta property="og:url" content="{{ .Permalink }}" />
|
|
<meta property="og:site_name" content="{{ .Site.Title }}" />
|
|
|
|
<meta name="twitter:card" content="summary" />
|
|
<meta name="twitter:site" content="@{{ .Site.Params.social.twitter }}" />
|
|
<meta name="twitter:creator" content="@{{ .Site.Params.social.twitter }}" />
|
|
|
|
<link rel="canonical" href="{{ .Permalink }}" />
|
|
|
|
{{ $style := resources.Get "css/style.css" | resources.Minify |
|
|
resources.Fingerprint }}
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ $style.Permalink }}"
|
|
integrity="{{ $style.Data.Integrity }}"
|
|
/>
|
|
|
|
<link rel="icon" href="/images/Pale_Blue_Dot.png" />
|
|
<link rel="apple-touch-icon" href="/images/Pale_Blue_Dot.png" />
|
|
|
|
{{ with .OutputFormats.Get "rss" -}} {{ printf `
|
|
<link rel="%s" type="%s" href="%s" title="%s" />
|
|
` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} {{ end -}} {{
|
|
partial "structured-data.html" . }} {{ block "head" . }}{{ end }}
|
|
</head>
|
|
<body>
|
|
{{ block "header" . }}{{ end }}
|
|
|
|
<main id="main" role="main">{{ block "main" . }}{{ end }}</main>
|
|
|
|
{{ block "footer" . }}{{ end }}
|
|
</body>
|
|
</html>
|