{{ define "main" -}}
{{ partial "processed-content.html" . }}

Timestamp format: YYYY-MM-DD HH:MM, as per RFC 3339. Sorted newest to oldest.

    {{- $pages := (where site.RegularPages "Section" .Section) -}} {{- range $pages -}} {{- $canonicalRelPermalink := .RelPermalink | replaceRE "^/~seirdy/" "/" -}} {{- $isTall := and (eq .Section "notes") (gt .WordCount 200) -}} {{- $itemtype := "SocialMediaPosting" -}} {{- if eq .Section "posts" -}} {{- $itemtype = "BlogPosting" -}} {{- end -}}
  1. Posted {{- if gt (sub .Lastmod.Unix .Date.Unix) 3600 -}} , updated {{ .Lastmod.Format "2006-01-02 15:04" }} {{- end }}

    {{- if eq .Section "notes" }}
    {{- if .Params.replyURI -}} {{- partial "reply-context" .Params -}} {{- end -}} {{ partial "processed-content.html" . }}
    {{- else }}

    {{ .Description }}

    {{- partial "wordcount.html" . -}}

    {{- end }}
  2. {{- end }}
{{ end }}