2023-07-27 14:14:55 +00:00
{{- $page := .page }}
{{- if and (not $page) .context }}
{{- $page = .context }}
2023-07-27 15:47:36 +00:00
{{- warnf "%q: DEPRECATED parameter 'context' for shortcode 'link' found, use 'page' instead; see https://mcshelby.github.io/hugo-theme-relearn/basics/migration/#5180" $page.File.Path }}
2023-07-27 14:14:55 +00:00
{{- end }}
2022-12-16 17:41:22 +00:00
{{- $url := .url }}
2023-10-10 17:36:59 +00:00
{{- if strings.HasPrefix $url "HAHAHUGOSHORTCODE" }}
{{- warnf "%q: WARNING you must call the ref / relref shortcode with '%% %%' instead of '< >' to work correctly for the anchor target attribute" $page.File.Path }}
{{- end }}
2022-12-16 17:41:22 +00:00
{{- $title := .title | default "" }}
{{- $title = trim $title " " }}
{{- $content := .content }}
{{- $target := .target | default "" }}
{{- if and (eq (len $target) 0) (or (strings.HasPrefix $url "http://") (strings.HasPrefix $url "https://") ) }}
{{- $target = "_blank" }}
2023-07-27 14:14:55 +00:00
{{- if isset $page.Site.Params "externallinktarget" }}
{{- $target = $page.Site.Params.externalLinkTarget }}
2022-12-23 11:24:04 +00:00
{{- end }}
2022-12-16 17:41:22 +00:00
{{- end -}}
2022-12-23 11:24:04 +00:00
< a href = "{{ $url | safeURL }}" { { if $ title } } title = "{{ $title }}" { { end } } { { if gt ( len $ target ) 0 } } target = "{{ $target }}" { { end } } > {{ $content | safeHTML }}< / a >