2025-03-30 22:45:24 -07:00
|
|
|
{{- $class := "" -}}
|
|
|
|
{{- $icon := "" -}}
|
2024-06-19 17:30:46 -07:00
|
|
|
{{- $absoluteDest := absLangURL .Destination -}}
|
|
|
|
{{- $siteRootUrl := absLangURL "" -}}
|
|
|
|
{{- $isExternal := not (hasPrefix $absoluteDest $siteRootUrl) -}}
|
2024-06-23 12:46:07 -07:00
|
|
|
{{- $isSamePage := hasPrefix .Destination "#" -}}
|
|
|
|
|
|
|
|
{{- if $isSamePage -}}
|
2025-03-30 22:45:24 -07:00
|
|
|
{{- $class = "same-page-link" -}}
|
2024-06-23 12:46:07 -07:00
|
|
|
{{- if index (.Page.Scratch.Get "definedSections") .Destination -}}
|
2025-03-30 22:45:24 -07:00
|
|
|
{{- $icon = "arrow-up" -}}
|
2024-06-23 12:46:07 -07:00
|
|
|
{{- else -}}
|
2024-06-23 17:24:28 -07:00
|
|
|
{{- /* Do not render "down" links because don't know how to distinguish unseen titles from paragraph links. */ -}}
|
2025-03-30 22:45:24 -07:00
|
|
|
{{- /* $icon = "arrow-down" */ -}}
|
2024-06-23 12:46:07 -07:00
|
|
|
{{- end -}}
|
|
|
|
{{- else if $isExternal -}}
|
2025-03-30 22:45:24 -07:00
|
|
|
{{- $class = "external-link" -}}
|
|
|
|
{{- $icon = "external-link" -}}
|
2024-06-23 12:46:07 -07:00
|
|
|
{{- end -}}
|
2024-06-19 17:30:46 -07:00
|
|
|
<a href="{{ .Destination | safeURL }}"
|
|
|
|
{{- with .Title }} title="{{ . }}"{{ end -}}
|
2025-03-30 22:45:24 -07:00
|
|
|
{{- with $class -}}
|
2024-06-23 12:46:07 -07:00
|
|
|
class="{{ . }}"
|
|
|
|
{{- end -}}
|
2024-06-24 17:51:46 -07:00
|
|
|
{{- if (and site.Params.externalLinksInNewTab $isExternal) -}}
|
2024-06-23 12:46:07 -07:00
|
|
|
target="_blank" rel="noopener noreferrer"
|
2024-06-19 17:30:46 -07:00
|
|
|
{{- end -}}
|
|
|
|
>
|
|
|
|
{{- with .Text | safeHTML }}{{ . }}{{ end -}}
|
2025-03-30 22:45:24 -07:00
|
|
|
{{- with $icon -}}{{- partial "icon.html" . -}}{{- end -}}
|
2024-06-19 17:30:46 -07:00
|
|
|
</a>
|
|
|
|
{{- /* chomp trailing newline */ -}}
|