hugo-theme-relearn/layouts/_default/_markup/render-link.html

5 lines
254 B
HTML
Raw Normal View History

<!-- This code opens an external link in a new tab. -->
<a href="{{ .Destination | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }}{{ if strings.HasPrefix .Destination "http" }} target="_blank" rel="noopener"{{ end }}>
{{ .Text | safeHTML }}
</a>