oef/templates/layout/small.html.tpl

14 lines
229 B
Smarty
Raw Normal View History

2019-11-04 15:00:46 +01:00
{{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}}