{{ define "main" }}

Notes

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

An RSS feed for these notes is available.

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. Noted {{ if gt (sub .Lastmod.Unix .Date.Unix) 3600 -}} , updated {{ .Lastmod.Format "2006-01-02 15:04:05" }} {{- end }}
    {{ .Content }}
  2. {{- end }}
{{ end }}