9 lines
342 B
HTML
9 lines
342 B
HTML
<!-- layouts/_default/_markup/render-link.html -->
|
|
<a href="{{ .Destination | safeURL }}"
|
|
{{ with .Title }} title="{{ . }}"{{ end }}
|
|
{{ if and (strings.HasPrefix .Destination "http") (not (strings.HasPrefix .Destination site.BaseURL)) }}
|
|
target="_blank" rel="nofollow noopener noreferrer"
|
|
{{ end }}
|
|
>
|
|
{{ .Text | safeHTML }}</a>
|