Back to Vector

Section

website/layouts/highlights/section.html

0.55.0696 B
Original Source

{{ define "title" }} {{ .Title }} | {{ site.Title }} {{ end }} {{ define "main" }} {{ $highlights := .RegularPages }} {{ $versions := site.Data.docs.versions }} {{ $latest := index $versions }} {{ $highlights := .RegularPages }} {{ $numVersions := len $versions }}

{{ partial "hero.html" . }}

{{ range $idx, $version := $versions }} {{ $isLast := eq $idx (sub $numVersions 1) }} {{ $thisVersionHighlights := where $highlights ".Params.release" "eq" . }} {{ if gt (len $thisVersionHighlights) 0 }} - {{ if not $isLast }} {{ end }}

{{/* Heroicon: outline/gear */}}

Version {{ . }}

{{ range $thisVersionHighlights }} {{ .Render "li" }} {{ end }}

{{ end }} {{ end }}

{{ end }}