2023-09-19 04:59:55 +00:00
|
|
|
{{ $link := .Destination }}
|
|
|
|
{{ $isRemote := strings.HasPrefix $link "http" }}
|
2023-10-24 22:11:10 +00:00
|
|
|
{{- if not $isRemote }}
|
|
|
|
{{ $url := urls.Parse .Destination }}
|
|
|
|
{{ if $url.Path }}
|
|
|
|
{{ $fragment := "" }}
|
|
|
|
{{- with $url.Fragment }}{{ $fragment = printf "#%s" . }}{{ end -}}
|
|
|
|
{{- with .Page.GetPage $url.Path }}{{ $link = printf "%s%s" .RelPermalink $fragment }}{{ end -}}
|
|
|
|
{{ end }}
|
|
|
|
{{ end -}}
|
|
|
|
<a href="{{ $link | safeURL }}"{{ with .Title }} title="{{ . }}"{{ end }}{{ if $isRemote }} target="_blank" rel="noreferrer"{{ end }}>{{- .Text | safeHTML -}}</a>
|