aboutsummaryrefslogtreecommitdiff
path: root/themes/simple/layouts/_default/_markup/render-image.html
blob: 6f46efa9291907edfb5fe605fbd7baeccf55f0f5 (plain)
1
2
3
4
5
6
7
8
9
10
{{ $cachebuster := delimit (shuffle (split (md5 "6fab11c6669976d759d2992eff1dd5be") "" )) "" }}

<figure>
  <a href="{{ .Destination }}" target="_blank">
    <img
      loading="lazy"
      src="{{ .Destination }}?v={{ $cachebuster }}"
      alt="{{ .Text }}" title="{{ .Text }}"> 
  </a>
</figure>