{{- /* site/layouts/partials/product-tags.html */ -}} {{- $ctx := . -}} {{- /* Find products list: prefer .Params.products, then .Page.Params.products, then .Params.product(s) */ -}} {{- $products := $ctx.Params.products -}} {{- if not $products -}} {{- with $ctx.Page -}} {{- $products = .Params.products -}} {{- end -}} {{- end -}} {{- if not $products -}} {{- $products = $ctx.Params.product -}} {{- end -}} {{- if not $products -}} {{- $products = $ctx.Params.products_list -}} {{- end -}} {{- if $products }}
Relevant for: {{- range $products }} {{- $p := trim (lower .) " \t\n\r" -}} {{- if eq $p "online" -}} CVAT Online {{- else if eq $p "enterprise" -}} CVAT Enterprise {{- else if eq $p "community" -}} CVAT Community {{- else -}} {{ . }} {{- end -}} {{- end }}
{{- end }}