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

7 lines
412 B
HTML
Raw Normal View History

{{- $extURL := .Page.Site.Params.exturl.enable }}
<a href="{{ .Destination | safeURL }}" title="{{ .Text }}" {{ if strings.HasPrefix .Destination "http" }}rel="noopener external nofollow noreferrer" target="_blank"{{ end }} {{ if $extURL }}class=" exturl"{{ end }}>
{{ .Text | safeHTML }}
{{- if and $extURL .Page.Site.Params.exturl.icon }}
<i class="fa fa-external-link-alt"></i>
{{- end }}
</a>