{{template "header" .}}

Welcome to my web space. This site is my writing desk: some random pages, weblog posts, and a public cut of the notes I keep synced across my machines.

Plain HTML and CSS. No Javascript, no tracking.

My interests are a bit all over the place, but around this site you can also find:

recent posts

{{- $posts := sortPages (index .Pages "weblog") "post_date" "mod_time"}} {{- with $posts}}
    {{- range slicePages . 0 5}} {{- $post_date := or (index .Meta "post_date") .ModTime}}
  • {{.Title}}
  • {{- end}}
{{- end}}

all posts →

recently changed notes

{{- $notes := sortPages (index .Pages "notes/sync") "mod_time"}} {{- with $notes}}
    {{- range slicePages . 0 5}} {{- $dir := dirPath (joinPath (slice (splitPath .OutputPath) 2))}}
  • {{$dir}}/ {{.Title}}
  • {{- end}}
{{- end}}

notes →

{{template "footer" .}}