{{ partial "seo.html" . }} {{ $style := resources.Get "css/style.css" | resources.Minify | fingerprint }} {{ partial "header.html" . }}

Now Log

{{ $blogPosts := slice }} {{ range $path, $entries := hugo.Data.longform }} {{ range $entries }} {{ $blogPosts = $blogPosts | append . }} {{ end }} {{ end }} {{ $sortedPosts := sort $blogPosts "created_at" "desc" }} {{ range first 2 $sortedPosts }} {{ $title := "" }} {{ $summary := "" }} {{ $image := "" }} {{ $tags := slice }} {{ $d := "" }} {{ $createdAt := int .created_at }} {{ range .tags }} {{ if eq (index . 0) "title" }} {{ $title = index . 1 }} {{ else if eq (index . 0) "summary" }} {{ $summary = index . 1 }} {{ else if eq (index . 0) "image" }} {{ $image = index . 1 }} {{ else if eq (index . 0) "t" }} {{ $tags = $tags | append (index . 1) }} {{ else if eq (index . 0) "d" }} {{ $d = index . 1 }} {{ end }} {{ end }}
{{ if $image }} {{ $title }} {{ end }}

{{ $title }}

{{ dateFormat "January 2, 2006" (time (int .created_at)) }}

{{ if $summary }}

{{ $summary }}

{{ end }}
{{ range $tags }} {{ . }} {{ end }}
{{ end }}

Music Traxxx

{{ $allMusic := slice }} {{ range $path, $entries := hugo.Data.music }} {{ range $entries }} {{ $allMusic = $allMusic | append . }} {{ end }} {{ end }} {{ $musicData := jsonify $allMusic }}

Pix & Doodles

{{ $allPictures := slice }} {{ range $path, $entries := hugo.Data.pictures }} {{ range $entries }} {{ $allPictures = $allPictures | append . }} {{ end }} {{ end }} {{ $picturesData := jsonify $allPictures }}

Vidz

{{ $allVideos := slice }} {{ range $path, $entries := hugo.Data.videos }} {{ range $entries }} {{ $allVideos = $allVideos | append . }} {{ end }} {{ end }} {{ $videosData := jsonify $allVideos }}
{{ partial "footer.html" . }}
✕
1 / 1
{{ $js := resources.Get "js/scripts.js" | resources.Minify | fingerprint }}