Back to Vector

Version Selector

website/layouts/partials/download/version-selector.html

0.55.0704 B
Original Source

{{/* Dropdown version selector */}} {{ $versions := site.Data.docs.versions }} {{ $latest := index $versions 0 }}

Version {{ $show := printf $store.global.version === '%s' $latest }} {{ partial "badge.html" (dict "word" "latest" "color" "green" "show" $show) }} {{ $show := $store.global.isNightly() }} {{ partial "badge.html" (dict "word" "unstable" "color" "yellow" "show" $show) }} {{/* Heroicon name: solid/chevron-down */}}

nightly {{ partial "badge.html" (dict "word" "unstable" "color" "yellow") }} {{ range $versions }} {{ $isLatest := eq . $latest }} {{ . }} {{ . }} {{ if $isLatest }} {{ partial "badge.html" (dict "word" "latest" "color" "green") }} {{ end }} {{ end }}