hugo-ui-blog/layouts/partials/function/url.ext.html

8 lines
342 B
HTML
Raw Normal View History

2023-09-26 17:07:31 +02:00
{{ $title := ((.title) | default "") }}
{{ $href := ((.href) | default "") }}
{{ $text := ((.text) | default "") }}
{{ $class := ((.class) | default "") }}
{{ $url := ((printf "<a title='%s' class='%s' href='%s' target='_blank' rel='noopener noreferrer nofollow'>%s</a>" ($title) ($class) ($href) ($text)) | safeHTML) }}
{{ return ($url) }}