diff --git a/README.md b/README.md index ef2acfbc..8ff85800 100644 --- a/README.md +++ b/README.md @@ -468,7 +468,7 @@ Parameters:
linked
Optional. String. Hugo image processing methods and options, mixed together, for the linked image. If no method is specified, resize is used. If no image dimensions are specified, the originals are used. If it is unprocessed, it is unprocessed. If it is default, the default options are used.
loading
-
Optional. String. Must be eager or lazy (default).
+
Optional. String. Must be eager (default) or lazy.
maxheight
Optional. String. CSS value. Maximum image height.
maxwidth
@@ -552,7 +552,7 @@ Parameters:
linked
Optional. String. Hugo image processing methods and options, mixed together, for the linked image. If no method is specified, resize is used. If no image dimensions are specified, the originals are used. If it is unprocessed, it is unprocessed. If it is default, the default options are used. Must not use with link.
loading
-
Optional. String. Must be eager or lazy (default).
+
Optional. String. Must be eager (default) or lazy.
maxheight
Optional. String. CSS value. Image maximum height.
maxwidth
diff --git a/layouts/partials/paige/img.html b/layouts/partials/paige/img.html index b0b8480e..0fbad35f 100644 --- a/layouts/partials/paige/img.html +++ b/layouts/partials/paige/img.html @@ -5,7 +5,7 @@ {{ $crossorigin := $params.crossorigin | default "anonymous" }} {{ $fetchpriority := $params.fetchpriority }} {{ $height := $params.height }} -{{ $loading := $params.loading | default "lazy" }} +{{ $loading := $params.loading | default "eager" }} {{ $referrerpolicy := $params.referrerpolicy | default "no-referrer" }} {{ $sizes := $params.sizes }} {{ $src := $params.src }}