~comcloudway/pages

6d78fb87927f09802cd7f2f0b24a927ec5e6ef77 — Jakob Meier 15 days ago b7b0744
Use alt text as image title, if no title was provided

This shows the alt text on hover, if the browser supports it.
And should also display it on long press on mobile.
1 files changed, 5 insertions(+), 0 deletions(-)

A layouts/_default/_markup/render-image.html
A layouts/_default/_markup/render-image.html => layouts/_default/_markup/render-image.html +5 -0
@@ 0,0 1,5 @@
{{ $title := (or .Title .Text) }}
<img src="{{ .Destination | safeURL }}"
  {{- with .Text }} alt="{{ . }}"{{ end -}}
  {{- with $title }} title="{{ . }}"{{ end -}}
>