diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-22 02:30:57 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-22 02:30:57 +0300 |
commit | ad07cd42129f30f1b2a2af53ea887d6664a7dc4a (patch) | |
tree | 7465c3a20e120bee1ddf388138efcaaefdcac35a /layouts/_default | |
parent | bc84ab71a602abe47feff1c31c1c989cbd87f6c2 (diff) |
Auto-commit 2024-12-22
Diffstat (limited to 'layouts/_default')
-rw-r--r-- | layouts/_default/_markup/render-image.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/layouts/_default/_markup/render-image.html b/layouts/_default/_markup/render-image.html index 3d15a11..a36828f 100644 --- a/layouts/_default/_markup/render-image.html +++ b/layouts/_default/_markup/render-image.html @@ -1,11 +1,10 @@ <figure class="figure"> <a href="{{ .Destination | safeURL }}"> <img - class="d-block img-fluid mb-2 rounded border shadow" - max-width="800" + class="d-block img-fluid mb-2 rounded border shadow imgcover" loading="lazy" src="{{ .Destination | safeURL }}" - {{- with .Text }} alt="{{ . }}"{{ end -}} + {{- if .Text}} alt="{{ .Text }}"{{ else }} alt="{{.Title}}"{{ end -}} {{- with .Title }} title="{{ . }}"{{ end -}} > </a> |