{{ 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. {{- .Scratch.Set "shortMeta" true -}} {{- partial "post-meta.html" . }} {{- if eq .Section "notes" }}
    {{- if .Params.replyURI -}} {{- partial "reply-context" .Params -}} {{- end -}} {{ partial "processed-content.html" . }}
    {{- else }}

    {{ .Description }}

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