authelia/docs/layouts/shortcodes/supported-product.html

10 lines
274 B
HTML

{{- $key := .Get "product" -}}
{{- $format := .Get "format" -}}
{{- with index $.Site.Data.misc.support $key -}}
{{- range . -}}
{{- replace $format "$version" . -}}
{{- end -}}
{{- else -}}
{{- errorf "Product '%s' not found in support data" $key -}}
{{- end -}}