hugo-book-theme/layouts/partials/docs/title-with-icon.html

10 lines
250 B
HTML
Raw Normal View History

2023-12-10 10:16:12 +01:00
{{ $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 }}