aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/_default/_markup/render-image.html
blob: a181ed49794b68645f03e64379a2cdb61db1e788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ $imageFile := print "public" (.Destination | safeURL) }}
{{ $image := imageConfig $imageFile }}
{{- /* This comment removes trailing newlines. */ -}}
<figure>
  <a href="{{ .Destination | safeURL }}" onclick="return false;">
    <img data-image-zoom
      src="{{ .Destination | safeURL }}"
      alt="{{ $.Text }}"
      title="{{ $.Text | htmlUnescape | safeHTML }}"
      width="{{ $image.Width }}"
      height="{{ $image.Height }}"
    />
  </a>
  <figcaption class="has-text-centered has-text-grey-dark">
    {{ $.Title | markdownify }}
  </figcaption>
</figure>
{{- /* This comment removes trailing newlines. */ -}}