Files
paige-hugo/layouts/_default/_markup/render-link.html
2025-02-07 17:18:56 -08:00

5 lines
410 B
HTML

{{- $external := cond (urls.Parse .Destination).IsAbs (not (strings.HasSuffix .Destination site.BaseURL)) false -}}
{{- $target := partial "paige/func-target.html" (dict "page" .Page "url" .Destination) -}}
<a {{ with .Destination }} href="{{ . }}" {{ end }} {{ if $external }} rel="external" {{ end }} {{ with $target }} target="{{ . }}" {{ end }} {{ with .Title }} title="{{ . }}" {{ end }}>{{ .Text }}</a>