{{ define "partials/list-limited.html" }} {{/* This is not pretty but I'm not good at templates */}} {{ $params := . | transform.Unmarshal (dict "delimiter" ";") }} {{ $fields := index $params 0 }} {{ $pageurl := index $fields 0 }} {{ $pagename := index $fields 1 }} {{ $limit := 5 }} {{ $pages := where site.RegularPages "Section" $pageurl }} {{- with $pages }}

Latest {{$pagename}}

{{- range ( $pages | first $limit ) }}
{{ .Title }}
{{ end }} {{ if (gt ($pages | len) $limit )}} See moreā€¦ {{ end }}
{{ end }} {{ end }} {{ define "main" }}

I'm a random internet dude and I figured that if I wrote something on the Internet then someone might read it, also I needed a website cause everyone got one of those!

What's in this desperate corner of the net?

Mostly my blog where I try to discuss and review things and other resources that I've been publishing all over the place and are in dire need of a more permanent home. Check the links at the top or look below for the latest posts!

Miscellaneous link collection of ultimate destiny

Find me at any of these places: {{ range $name, $link := $.Site.Data.home.links }} {{ $name }} {{ end }}

Browse by series

{{ range $link, $name := $.Site.Data.home.series }}
{{ $name }}
{{ end }}
{{ partial "list-limited.html" "posts;posts" }} {{ partial "list-limited.html" "pages;pages" }} {{ end }}