mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-09 22:47:27 +00:00
11 lines
436 B
HTML
11 lines
436 B
HTML
{{ $link := .Destination }}
|
|
{{ if not (strings.HasPrefix $link "http") }}
|
|
{{ if strings.HasSuffix .Page.Parent.RelPermalink "docs/" }}
|
|
{{ $link = printf "%s%s" .Page.RelPermalink .Destination }}
|
|
{{ else }}
|
|
{{ $link = printf "%s%s" .Page.Parent.RelPermalink .Destination }}
|
|
{{ end }}
|
|
{{ end }}
|
|
<p>
|
|
<img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" {{ with .Title}} title="{{ . }}"{{ end }} />
|
|
</p> |