13 lines
229 B
Smarty
13 lines
229 B
Smarty
{{define "small"}}
|
|
{{if .data}}
|
|
{{if .data | isSlice}}
|
|
{{range $el := .data}}
|
|
<small>{{$el|string}}</small>
|
|
{{end}}
|
|
{{else}}
|
|
<small>{{.data|string}}</small>
|
|
{{end}}
|
|
{{else}}
|
|
<small>{{.options.noElements}}</small>
|
|
{{end}}
|
|
{{end}}
|