Files
velero/site/layouts/_default/_markup/render-image.html
Tony Batard c663ce15ab Hugo migration (#2720)
* Move files to a Hugo structure

Signed-off-by: Tony Batard <tbatard@pivotal.io>
2020-08-13 09:09:15 -07:00

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>