mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 13:16:21 -04:00
36 lines
2.1 KiB
HTML
36 lines
2.1 KiB
HTML
<meta charset="utf-8">
|
||
{{ hugo.Generator }}
|
||
<title>{{ .Title }}{{ if not .IsHome }} – {{ .Site.Title }}{{ else }} 👨‍💻{{ end }}</title>
|
||
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ .Site.Params.description }}{{ end }}">
|
||
{{ with .Site.Author.name }}<meta name="author" content="{{ . }}">{{ end }}
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
{{ partial "seo/social-images" . }}
|
||
{{ partial "seo/open-graph" . }}
|
||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
||
<meta name="apple-mobile-web-app-title" content="{{ .Site.Title }}">
|
||
<meta name="theme-color" content="#0e6dc2">
|
||
<link rel="preload" href="{{ "fonts/roboto-latin-regular.woff2" | absURL }}" as="font" type="font/woff2" crossorigin>
|
||
<link rel="preload" href="{{ "fonts/roboto-latin-medium.woff2" | absURL }}" as="font" type="font/woff2" crossorigin>
|
||
<link rel="preload" href="{{ "fonts/roboto-latin-bold.woff2" | absURL }}" as="font" type="font/woff2" crossorigin>
|
||
{{ partial "styles" . }}
|
||
<link rel="apple-touch-icon" href="{{ "apple-touch-icon.png" | absURL }}">
|
||
<link rel="mask-icon" href="{{ "safari-pinned-tab.svg" | absURL }}" color="#009cdf">
|
||
<link rel="icon" href="{{ "favicon-192.png" | absURL }}" sizes="192x192">
|
||
<link rel="icon" href="{{ "favicon-48.png" | absURL }}" sizes="48x48">
|
||
<link rel="icon" href="{{ "favicon-32.png" | absURL }}" sizes="32x32">
|
||
<link rel="icon" href="{{ "favicon-16.png" | absURL }}" sizes="16x16">
|
||
<link rel="shortcut icon" href="{{ "favicon.ico" | absURL }}" sizes="16x16 32x32 48x48">
|
||
<link rel="canonical" href="{{ .Permalink }}">
|
||
<link rel="alternate" type="application/rss+xml" href="{{ "feed.xml" | absURL }}" title="{{ .Site.Title }} (RSS)">
|
||
<link rel="author" href="{{ "humans.txt" | absURL }}">
|
||
{{ if and .IsPage (eq .Type "notes") }}
|
||
{{ with .OutputFormats.Get "amp" }}
|
||
<link rel="amphtml" href="{{ .Permalink }}">
|
||
{{ end }}
|
||
{{ partial "seo/schema-person" . }}
|
||
{{ partial "seo/schema-article" . }}
|
||
{{ else }}
|
||
{{ partial "seo/schema-person" . }}
|
||
{{ end }}
|