10 lines
250 B
HTML
10 lines
250 B
HTML
|
{{ $title := (partial "docs/title" .) }}
|
||
|
{{ $icon := "" }}
|
||
|
|
||
|
{{ if .Params.Icon }}
|
||
|
{{ $icon = printf "<img src=\"%s\" class=\"book-filetree-icon\" />" .Params.Icon }}
|
||
|
{{ end }}
|
||
|
|
||
|
{{ $out := printf "%s %s" $icon $title | safeHTML }}
|
||
|
{{ return $out }}
|