2022-05-30 22:49:31 +00:00
< section class = "h-feed hfeed" itemprop = "hasPart" itemscope = "" itemtype = "https://schema.org/DataFeed" >
2022-06-20 03:15:56 +00:00
< h2 class = "p-name" itemprop = "name" id = "articles" > Articles< / h2 >
< p > Here’ s a selection of my best articles, in featured order. To see the rest, visit < a href = "posts/" > my Articles page< / a > .< / p >
< p > I edit some of these articles quite often; some are updated indefinitely. Check the “updated” timestamps.< / p >
2022-04-26 00:39:51 +00:00
< p role = "doc-tip" >
2022-06-15 05:08:50 +00:00
Timestamp format: < code > YYYY-MM-DD< / code > , as per < cite > < a href = "https://www.ietf.org/rfc/rfc3339.txt" > RFC 3339< / a > < / cite > and < cite > < a href = "https://xkcd.com/1179/" > ISO 8601< / a > < / cite > . Sorted newest to oldest.
2022-04-26 00:39:51 +00:00
< / p >
2022-05-05 05:22:38 +00:00
< ol >
2022-06-20 03:15:56 +00:00
{{- $posts := site.RegularPages -}}
{{- $posts = sort (where $posts "Params.featured" ">" 0) "Params.featured" -}}
2022-05-05 05:22:38 +00:00
{{- range $posts -}}
2022-05-21 01:32:21 +00:00
{{- $canonicalRelPermalink := .RelPermalink | replaceRE "^/~seirdy/" "/" -}}
2022-05-30 22:49:31 +00:00
< li itemprop = "dataFeedElement" itemscope = "" itemtype = "https://schema.org/DataFeedItem" >
< article class = "h-entry hentry" itemprop = "item" itemscope = "" itemtype = "https://schema.org/BlogPosting" itemid = "{{ .Site.Params.CanonicalBaseURL }}{{ $canonicalRelPermalink }}" >
2022-04-25 15:54:42 +00:00
< h3
itemprop="name headline" class="p-name entry-title">
2022-03-04 21:55:42 +00:00
< a href = "{{ .Permalink }}" itemprop = "url" class = "u-url url" rel = "bookmark" >
2022-04-26 00:28:13 +00:00
{{ .Title }}
2022-03-04 21:55:42 +00:00
< / a >
< / h3 >
2022-06-09 00:40:19 +00:00
< p >
Posted < time itemprop = "datePublished" class = "dt-published published" datetime = "{{ .Date.Format " 2006-01-02 15:04:05Z07:00 " } } " > {{ .Date.Format "2006-01-02" }}< / time >
{{- if lt .Date .Lastmod -}}
, updated < time { { if not ( . Params . evergreen ) } } itemprop = "dateModified" class = "dt-updated updated" { { end } } datetime = "{{ .Lastmod.Format " 2006-01-02 15:04:05Z07:00 " } } " > {{ .Lastmod.Format "2006-01-02" }}< / time >
{{- end }}
< / p >
2022-05-24 23:33:16 +00:00
2022-08-02 03:52:35 +00:00
< div >
2022-03-08 06:44:45 +00:00
< p class = "p-summary entry-summary" itemprop = "description" > {{ .Description }}< / p >
2022-05-16 00:38:30 +00:00
< p > {{- partial "wordcount.html" . -}}< / p >
2022-08-02 03:52:35 +00:00
< / div >
2022-03-04 21:55:42 +00:00
< / article >
2022-02-16 05:42:58 +00:00
< / li >
{{- end }}
2022-04-05 04:40:36 +00:00
< / ol >
2022-03-08 06:44:45 +00:00
< / section >