{{ define "star" }} {{/* Star component - displays star icon with count Required: .IsStarred (bool), .StarCount (int) Optional: .Interactive (bool), .Handle (string), .Repository (string) Interactive mode: renders as button with HTMX toggle Display mode: renders as span (default) */}} {{ if .Interactive }} {{ else }} {{ .StarCount }} {{ end }} {{ end }}