mirror of
https://github.com/kubesphere/website.git
synced 2025-12-26 08:32:55 +00:00
11 lines
533 B
HTML
11 lines
533 B
HTML
{{ if strings.HasPrefix .Destination "http" }}
|
|
<a href="{{ .Destination | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }} target="_blank" rel="noopener noreferrer">{{ .Text }}</a>
|
|
{{ else }}
|
|
{{ $page := .Page.GetPage .Destination }}
|
|
{{ if $page }}
|
|
<a href="#{{ $page.UniqueID }}"{{ with .Title}} title="{{ . }}"{{ end }}>{{ .Text }}</a>
|
|
{{ else}}
|
|
{{ $page := .Page.GetPage (substr .Destination 3 -1) }}
|
|
<a href="#{{ $page.UniqueID }}"{{ with .Title}} title="{{ . }}"{{ end }}>{{ .Text }}</a>
|
|
{{ end }}
|
|
{{ end }} |