{{range $v := nav_menu}} {{$styles := json_unmarshal_bytes $v.Style}} {{$active := menu_active $v.Path $v.Children}} {{if $v.Children}}
{{else}} {{if $v.Icon}}{{if $active}}{{template "menu_icon" (dict "name" $v.Icon "class" "w-5 h-5 shrink-0 text-amber-500")}}{{else}}{{template "menu_icon" (dict "name" $v.Icon "class" "w-5 h-5 shrink-0 text-gray-400 group-hover:text-amber-500 transition-colors")}}{{end}}{{end}} {{$v.Title}} {{end}} {{end}}