mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-14 09:42:09 +00:00
10 lines
454 B
HTML
10 lines
454 B
HTML
|
{{- define "main" -}}
|
||
|
{{- $canonicalRelPermalink := .RelPermalink | replaceRE "^/~seirdy/" "/" }}
|
||
|
<main itemprop="hasPart" itemscope itemtype="https://schema.org/SocialMediaPosting" itemid="{{ .Site.Params.CanonicalBaseURL }}{{ $canonicalRelPermalink }}">
|
||
|
<link itemprop="isPartOf" href="{{ .Site.Params.CanonicalBaseURL }}/">
|
||
|
{{ partial "full-article.html" . }}
|
||
|
{{ partial "webmentions.html" . }}
|
||
|
</main>
|
||
|
{{ partial "prev-next.html" . -}}
|
||
|
{{- end }}
|