{{ if (strings.HasPrefix .Destination "mailto") -}} {{- with .Text -}} {{- partial "main/email" (dict "emailAddress" $.Destination "emailTitle" .) -}} {{- else -}} {{- partial "main/email" (dict "emailAddress" $.Destination) -}} {{- end -}} {{- else -}} {{- $link := .Destination -}} {{- $absolute := (or (strings.HasPrefix $link "http://") (strings.HasPrefix $link "https://")) -}} {{- if not $absolute -}} {{- $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 -}} {{ .Text | safeHTML }} {{- end -}}