2022-06-28 00:52:06 +00:00
|
|
|
{{- $link := .Destination }}
|
|
|
|
{{- $isRemote := strings.HasPrefix $link "http" }}
|
|
|
|
{{- 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 -}}
|
2022-06-15 07:51:47 +00:00
|
|
|
<a href="{{ $link | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }}{{ if $isRemote }} target="_blank"{{ end }}>{{ .Text | safeHTML }}</a>
|
|
|
|
{{- /* This comment removes trailing newlines. */ -}}
|