aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/_default/_markup/render-link.html
blob: b6574a2a4d93ddc4204d81d818cd32365d060ecb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{- $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 -}}
<a
  title="{{ $link | safeURL }}"
  rel="noopener"
  href="{{ $link | safeURL }}"
  {{ with .Title }}
  title="{{ . }}"
  {{ end }}
  {{- if $isRemote -}}
  target="_blank"
  {{ end }}>
    {{- .Text | safeHTML -}}
</a>
{{- /* This comment removes trailing newlines. */ -}}