6
0
Fork 0

Afbeeldingen 'above the fold' met normale prioriteit laden om layout-shift te voorkomen

This commit is contained in:
Michael Boelen 2023-06-18 13:50:42 +02:00
parent 1e4b8b5701
commit e74c873b3b
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@
{{- end }} {{- end }}
{{ $img := imageConfig (add "/static" (.image | safeURL)) }} {{ $img := imageConfig (add "/static" (.image | safeURL)) }}
<img src="{{ .image | safeURL }}" alt="{{ .alt }}" loading="lazy" decoding="async" width="{{ $img.Width }}" height="{{ $img.Height }}"> <img src="{{ .image | safeURL }}" alt="{{ .alt }}"{{ if not .above_the_fold }} loading="lazy"{{ end }} decoding="async" width="{{ $img.Width }}" height="{{ $img.Height }}">
</picture> </picture>
{{ if .figcaption }} {{ if .figcaption }}
<figcaption> <figcaption>

View file

@ -7,7 +7,7 @@
{{ $personid := .id }} {{ $personid := .id }}
{{ if .thumbnail }} {{ if .thumbnail }}
{{ $alttext := printf "Foto van %s" .name }} {{ $alttext := printf "Foto van %s" .name }}
{{ partial "show-image.html" (dict "context" . "image" .thumbnail "alt" $alttext) }} {{ partial "show-image.html" (dict "context" . "image" .thumbnail "above_the_fold" true "alt" $alttext) }}
{{ end }} {{ end }}
{{ $text }} {{ $text }}