mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-06 00:33:39 +00:00
14 lines
323 B
HTML
14 lines
323 B
HTML
{{- $isExternal := strings.HasPrefix .Destination "http" -}}
|
|
<a
|
|
href="{{ .Destination | safeURL }}"
|
|
{{ with .Title }}
|
|
title="{{ . }}"
|
|
{{ end }}
|
|
{{ if $isExternal }}
|
|
class="link--external" target="_blank" rel="noreferrer"
|
|
{{ end }}
|
|
>
|
|
{{- .Text | safeHTML -}}
|
|
</a>
|
|
{{- /* Trimm trailing whitespace */ -}}
|