{{ define "main" }}

Notes

This is my microblog. These are my short informal posts, sorted by date (newest first). For longer posts, see my blog.

Timestamp format: YYYY-MM-DD HH:MM:SS, as per RFC 3339

    {{- $posts := (where site.RegularPages "Section" "notes") -}} {{- range $posts -}} {{- $canonicalRelPermalink := .RelPermalink | replaceRE "^/~seirdy/" "/" -}}
  1. Posted {{- if lt .Date .Lastmod -}} , updated {{ .Lastmod.Format "2006-01-02 15:04:05" }} {{- end }}
    {{ .Content }}
  2. {{- end }}
{{ end }}