{{ define "main" }} {{/* Pass the current section to the JavaScript via data attributes */}} {{/* Also add a data attribute mapping section names to category names */}}
{{ $categories := slice "Books" "Movies" "TV Series" "Recipes" "YouTube" "Music" "Concerts" "Restaurants" }} {{ range $i, $cat := $categories }}
{{ $cat }}
{{ end }}
{{ range .Site.RegularPages }} {{ if not (eq .Params.draft true) }} {{ partial "card.html" . }} {{ end }} {{ end }}
{{ end }}