2022-05-25 00:28:32 +00:00
|
|
|
{{- $canonicalRelPermalink := .RelPermalink | replaceRE "^/~seirdy/" "/" -}}
|
2022-05-27 01:03:28 +00:00
|
|
|
{{- $isNotes := false -}}
|
|
|
|
{{- $action := "Posted" -}}
|
2022-05-25 00:28:32 +00:00
|
|
|
{{- $logURL := printf "%scontent/%s" .Site.Params.logUrlPrefix .File.Path -}}
|
2022-05-27 01:03:28 +00:00
|
|
|
{{- if or (eq .Page.Section "notes") (eq .Page.Title "Notes") -}}
|
|
|
|
{{- $isNotes = true -}}
|
|
|
|
{{- $action = "Noted" -}}
|
|
|
|
{{- else -}}
|
2022-05-25 00:28:32 +00:00
|
|
|
{{- $logURL = $logURL | strings.ReplaceRE `\.md` `.gmi` -}}
|
|
|
|
{{- end -}}
|
2022-05-27 01:03:28 +00:00
|
|
|
{{- $action }} <time{{ if not (.Params.evergreen) }} itemprop="dateCreated datePublished" class="dt-published published"{{ end }} datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006-01-02" }}</time>
|
2022-05-18 15:55:43 +00:00
|
|
|
by {{- partial "indieweb-author.html" -}} on his <a rel="canonical" itemprop="mainEntityOfPage url" class="u-url url" href="{{ .Site.Params.CanonicalBaseURL }}{{ $canonicalRelPermalink }}">Website</a>{{- with .OutputFormats.Get "gemtext" -}}{{- printf " " -}}and <a rel="syndication" class="u-syndication" href="{{replace .Permalink "/gemini" "" 1 | safeURL}}">Gemini capsule</a>{{- end -}}.
|
2022-05-27 01:03:28 +00:00
|
|
|
{{ if gt (sub .Lastmod.Unix .Date.Unix) 3600 -}}
|
2022-05-18 15:55:43 +00:00
|
|
|
<br>
|
2022-05-25 00:28:32 +00:00
|
|
|
Last updated <time itemprop="dateModified" class="dt-updated updated" datetime="{{ .Lastmod.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Lastmod.Format "2006-01-02" }}</time>. <a href="{{ $logURL }}">Changelog</a>.
|
2022-05-18 15:55:43 +00:00
|
|
|
{{- end }}
|
2022-05-27 01:03:28 +00:00
|
|
|
{{ if not $isNotes -}}
|
2022-05-18 15:55:43 +00:00
|
|
|
<br>
|
2022-05-24 23:33:16 +00:00
|
|
|
{{ partial "wordcount.html" . -}}
|
|
|
|
{{ end }}
|