summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/img.html
blob: 58a6765ec9382f6dad32ddaa7b612e0d059c000a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<figure class="center-img">
<center>
  <img
    src="{{ .Get "src" }}"
    alt="{{ .Get "alt" }}"
    title="{{ .Get "title" }}"
  >
</center>

  {{ with .Get "title" }}
  <figcaption style="font-size:0.9em; opacity:0.7; margin-top:5px;">
    {{ . }}
  </figcaption>
  {{ end }}
</figure>