{{ define "main" }}

{{ .Title }}

{{ .Content }}
{{ $columns := 3 }} {{ $files := readDir "/static/images/screenshots/" }} {{ range $index, $element := $files }} {{ $fileTitle := (index (split .Name "-") 1) }} {{ $fileTitle := (index (split $fileTitle ".") 0) }} {{if eq (mod $index $columns) (sub $columns 1)}}
{{ end }} {{ end }}
{{ end }}