| 1 | {{- /* |
| 2 | Topic / star visualization shortcode — inline topic chip cloud. |
| 3 | |
| 4 | Usage (percent-brace shortcode call): |
| 5 | topic-stars topics="agent-skills|local-first|hardware" stars="16480000" repos="390" |
| 6 | */ -}} |
| 7 | {{- $topics := slice -}} |
| 8 | {{- with .Get "topics" }}{{ $topics = split . "|" }}{{ end -}} |
| 9 | {{ partial "visuals/topic-constellation.html" (dict |
| 10 | "topics" $topics |
| 11 | "stars" (.Get "stars") |
| 12 | "repos" (.Get "repos") |
| 13 | "heading" (.Get "heading") |
| 14 | "level" (.Get "level") |
| 15 | ) }} |