7 lines
344 B
HTML
7 lines
344 B
HTML
{{- $productVersion := .Page.Params.version -}}
|
|
{{- $defaultShowInString := "v2,cloud,cloud-serverless,cloud-dedicated,clustered,core,enterprise" -}}
|
|
{{- $showInString := .Get 0 | default $defaultShowInString }}
|
|
{{- $showInList := split $showInString "," -}}
|
|
{{- $show := in $showInList $productVersion -}}
|
|
{{ if $show }}{{ .Inner }}{{ end }}
|