9 lines
316 B
HTML
9 lines
316 B
HTML
{{- $productData := partial "product/get-data.html" . -}}
|
|
{{- $length := .Get 0 | default "long" -}}
|
|
{{- $omit := .Get "omit" | default "" -}}
|
|
{{- if eq $length "long" }}
|
|
{{- $productData.name | replaceRE $omit "" -}}
|
|
{{ else if eq $length "short" }}
|
|
{{- $productData.altname | replaceRE $omit "" -}}
|
|
{{ end -}}
|