2020-11-03 23:46:20 +00:00
{{ define "main" }}
2020-12-29 00:56:52 +00:00
< article itemscope itemtype = "https://schema.org/Article" class = "h-entry" >
2020-11-19 06:20:30 +00:00
< header id = "post-header" >
2020-12-29 00:56:52 +00:00
< h1 itemprop = "name headline" class = "p-hame" > {{ .Title }}< / h1 >
2020-12-22 00:38:26 +00:00
{{ $lastmod := .Lastmod -}}
{{ if lt .Date $lastmod -}}
2020-12-29 00:56:52 +00:00
Originally posted < time class = "dt-published" itemprop = "datePublished" datetime = "{{ .Date.Format " 2006-01-02T15:04:05Z07:00 " } } " > {{ .Date.Format "2006-01-02" }}< / time > by < a itemprop = "author" class = "p-author h-card" href = "https://seirdy.one" rel = "author" > {{ .Site.Author.name }}< / a > .< br >
Last updated < time itemprop = "dateModified" class = "dt-updated" datetime = "{{ $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-22 00:38:26 +00:00
{{ else -}}
2020-12-29 00:56:52 +00:00
Posted < time itemprop = "datePublished" datetime = "{{ .Date.Format " 2006-01-02T15:04:05Z07:00 " } } " > {{ .Date.Format "2006-01-02" }}< / time > .
2020-12-22 00:38:26 +00:00
{{ end }}
2020-11-19 06:20:30 +00:00
< / header >
2020-12-29 00:56:52 +00:00
< section itemprop = "articlebody" >
{{ .Content -}}
< / section >
2020-11-03 23:46:20 +00:00
< / article >
2020-11-19 06:20:30 +00:00
< br >
< hr >
2020-12-11 20:02:33 +00:00
< footer class = "comment" >
2020-12-22 00:38:26 +00:00
{{ with .OutputFormats.Get "gemtext" -}}
2020-11-19 06:20:30 +00:00
< p >
View this article on < a href = "{{replace .Permalink " / gemini " " " 1 | safeURL } } " > my Gemini capsule< / a >
< / p >
2020-12-22 00:38:26 +00:00
{{ end -}}
< p > < a href = "mailto:~seirdy/seirdy.one-comments@lists.sr.ht" > Send an email< / a > to leave a comment in the < a href = "https://lists.sr.ht/~seirdy/seirdy.one-comments" > mailing list< / a > for seirdy.one. You'll have to send in plain text; please < a href = "https://useplaintext.email/" > learn how.< / a > . Alternatively, send your email < a href = "mailto:seirdy@seirdy.one" > directly to me< / a > ; it won’ t show up on the mailing list, but I’ ll see it.< / p >
2020-12-11 20:02:33 +00:00
< / footer >
2020-11-19 06:20:30 +00:00
< hr >
2020-11-25 08:43:39 +00:00
{{ end }}