redstrate.com/themes/red/layouts/_default/_markup/render-link.html

5 lines
391 B
HTML
Raw Normal View History

{{ $icon := resources.Get "external-link.svg" }}
2023-08-10 10:47:01 -04:00
<a class="ext-link" href="{{ .Destination | urlize | safeURL }}" {{ if strings.HasPrefix .Destination "http" }}
target="_blank"{{ end }}>{{ .Text | safeHTML }}{{ if strings.HasPrefix .Destination "http" }}<img class="external-link" aria-hidden="true" alt="External link" width="16" height="16" src="{{ $icon.RelPermalink }}">{{- end -}}</a>