{{ define "main" }}

{{ $hash := md5 .Title }} {{ $r := printf "0x%s" (substr $hash 0 2) | int }} {{ $g := printf "0x%s" (substr $hash 2 2) | int }} {{ $b := printf "0x%s" (substr $hash 4 2) | int }} {{ $rgba := printf "rgba(%d,%d,%d,0.2)" $r $g $b }} {{ .Title }}

{{ .Content }}
{{ range .Pages }} {{ end }}
Tool Description
{{ .LinkTitle }} {{ .Content | truncate 200 }}
{{ end }}