1
0
Fork 0
faulty.equipment/themes/fesite/layouts/_default/_markup/render-image.html
Hamcha 8a17d6b3d8
All checks were successful
continuous-integration/drone/push Build is passing
freecad
2023-09-13 21:59:07 +02:00

16 lines
464 B
HTML

<figure width="100%">
<a href="#{{ .Destination | md5 }}-lightbox"
><img src="{{ .Destination | safeURL }}" alt="{{ .PlainText }}"
/></a>
<figcaption>
{{ if .Title }}
<p>{{ .Title | markdownify }}</p>
{{ else if .Text }}
<p>{{ .Text | htmlUnescape }}</p>
{{ end }}
</figcaption>
</figure>
<a href="#_" class="lightbox" id="{{ .Destination | md5 }}-lightbox">
<img src="{{ .Destination | safeURL }}" alt="{{ .PlainText }}" />
</a>