github.com/projectcontour/contour@v1.28.2/site/themes/contour/layouts/_default/_markup/render-image.html (about)

     1  {{ $link := .Destination }}
     2  {{ if not (strings.HasPrefix $link "http") }}
     3      {{ if strings.HasSuffix .Page.Parent.RelPermalink "docs/" }}
     4          {{ $link = printf "%s%s" .Page.RelPermalink .Destination }}
     5      {{ else }}
     6          {{ $link = printf "%s%s" .Page.Parent.RelPermalink .Destination }}
     7      {{ end }}
     8  {{ end }}
     9  <p>
    10      <img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" {{ with .Title}} title="{{ . }}"{{ end }} />
    11  </p>