{{ define "main" }}

{{ .Title }}

{{ .Content }}
{{ $taxonomy := "tags" }} {{ $section := "notes" }} {{ range $term, $weightedPages := index site.Taxonomies $taxonomy }} {{ $termPage := site.GetPage (printf "%s/%s" $taxonomy $term) }} {{ $termPages := where $weightedPages "Page.Section" $section }} {{ $amount := $termPages.Len }} {{ if gt $amount 0 }}

{{ $termPage.LinkTitle }}

{{ end }} {{ end }}
{{ end }}