summaryrefslogtreecommitdiff
path: root/themes/blowfish/layouts/_default/_markup/render-link.html
blob: b6028bf568461cefdd72408dc49bd5842d1453db (plain)
1
2
3
4
5
6
7
<a href="{{ .Destination | safeURL }}"
    {{- with .Title -}}
    title="{{ . }}"
    {{- end }}
    {{- if or (strings.HasPrefix .Destination "http:") (strings.HasPrefix .Destination "https:") }} target="_blank"{{ end }}>
    {{- .Text | safeHTML -}}
</a>