1 2 3 4 5 6 7 8 9 10 11 12
{{ $projects := where .Site.RegularPages "Params.categories" "intersect" (slice "projects") }} <ul> {{ range $projects }} <li> <a href="{{ .Permalink }}">{{ .Title }}</a> {{ with .Description }} — {{ . }} {{ end }} </li> {{ end }} </ul>