mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-07-19 15:45:33 -04:00
29 lines
972 B
HTML
29 lines
972 B
HTML
{{ partial "head/meta" . -}}
|
|
{{ partial "functions/social-images" . -}}
|
|
{{ partial "head/open-graph" . -}}
|
|
{{ partialCached "head/mobile" . -}}
|
|
{{ partial "head/preload" . -}}
|
|
{{ partialCached "head/styles" . -}}
|
|
{{ partialCached "head/favicons" (dict "pngSizes" "192 48 32 16" "icoSizes" "16 32 48") -}}
|
|
<link rel="manifest" href="{{ "site.webmanifest" | absURL }}">
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
{{ partialCached "head/feeds" . -}}
|
|
{{ partialCached "head/webmention" . -}}
|
|
<link rel="author" href="{{ "humans.txt" | absURL }}">
|
|
{{ if and .IsPage (eq .Type "notes") }}
|
|
{{- with .OutputFormats.Get "amp" -}}
|
|
<link rel="amphtml" href="{{ .Permalink }}">
|
|
{{- end }}
|
|
{{ partial "head/schema-person" . }}
|
|
{{ partial "head/schema-article" . }}
|
|
{{ else }}
|
|
{{ partial "head/schema-person" . }}
|
|
{{ end -}}
|
|
|
|
{{/* Page-specific styles set via page-css shortcode */}}
|
|
{{- with .Page.Scratch.Get "css" }}
|
|
<style>
|
|
{{- . | safeCSS -}}
|
|
</style>
|
|
{{ end -}}
|