2020-11-03 23:46:20 +00:00
{{ define "main" }}
2022-02-17 05:25:34 +00:00
< div itemprop = "blogPost mainEntity" itemscope itemtype = "https://schema.org/BlogPosting" >
< article class = "h-entry hentry" >
2020-12-29 03:23:54 +00:00
< header id = "post-header" >
2022-02-17 05:25:34 +00:00
< h1 itemprop = "name headline" class = "p-name entry-title" > {{ .Title }}< / h1 >
< span class = "dateline" >
Posted < time itemprop = "datePublished" class = "dt-published published" datetime = "{{ .Date.Format " 2006-01-02T15:04:05Z07:00 " } } " title = "{{ .Date.Format " 2006-01-02T15:04:05Z07:00 " } } " > {{ .Date.Format "2006-01-02" }}< / time >
< / span >
< span class = "byline" >
by {{- partial "indieweb-author.html" -}}< / span > on his < a rel = "canonical" itemprop = "mainEntityOfPage" class = "u-url url" href = "https://seirdy.one{{ .RelPermalink }}" > Website< / a >
{{ with .OutputFormats.Get "gemtext" -}}
and < a rel = "syndication" class = "u-syndication" href = "{{replace .Permalink " / gemini " " " 1 | safeURL } } " > Gemini capsule< / a >
{{- end -}}
{{ if lt .Date .Lastmod -}}
< br >
Last updated < time itemprop = "dateModified" class = "dt-updated updated" datetime = "{{ .Lastmod.Format " 2006-01-02T15:04:05Z07:00 " } } " title = "{{ .Lastmod.Format " 2006-01-02T15:04:05Z07:00 " } } " > {{ .Lastmod.Format "2006-01-02" }}< / time > . < a href = "{{ .Site.Params.logUrlPrefix }}content/{{ .File.Path }}" > Changelog< / a >
2020-12-29 03:23:54 +00:00
{{ end }}
2022-02-17 05:25:34 +00:00
< br >
< small >
< span itemprop = "wordCount" > {{ .WordCount }}< / span > words, a < span itemprop = "timeRequired" content = "PT{{ .ReadingTime }}M" > {{ .ReadingTime }} minute< / span > read
< / small >
2020-12-29 03:23:54 +00:00
< / header >
2022-02-17 05:25:34 +00:00
< section class = "e-content entry-content" itemprop = "articleBody" >
2021-01-18 01:18:02 +00:00
{{ partial "processed-content" . -}}
2020-12-29 03:23:54 +00:00
< / section >
2021-01-19 21:16:42 +00:00
< / article >
2020-12-29 03:23:54 +00:00
< / div >
2020-11-25 08:43:39 +00:00
{{ end }}