chore: configurable loading
This commit is contained in:
parent
4108ce86ef
commit
a05666f1c7
4 changed files with 12 additions and 4 deletions
|
@ -27,6 +27,7 @@ const imageShortcode = async (
|
||||||
src,
|
src,
|
||||||
alt,
|
alt,
|
||||||
className = undefined,
|
className = undefined,
|
||||||
|
loading = 'lazy',
|
||||||
widths = [75, 150, 300, 600, 900, 1200],
|
widths = [75, 150, 300, 600, 900, 1200],
|
||||||
formats = ['webp', 'jpeg'],
|
formats = ['webp', 'jpeg'],
|
||||||
sizes = '100vw'
|
sizes = '100vw'
|
||||||
|
@ -71,7 +72,7 @@ const imageShortcode = async (
|
||||||
width: largestUnoptimizedImg.width,
|
width: largestUnoptimizedImg.width,
|
||||||
height: largestUnoptimizedImg.height,
|
height: largestUnoptimizedImg.height,
|
||||||
alt,
|
alt,
|
||||||
loading: 'lazy',
|
loading,
|
||||||
decoding: 'async',
|
decoding: 'async',
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ layout: main
|
||||||
---
|
---
|
||||||
{% render "partials/header.liquid", site: site, page: page, nav: nav %}
|
{% render "partials/header.liquid", site: site, page: page, nav: nav %}
|
||||||
{{ content }}
|
{{ content }}
|
||||||
{% render "partials/now/media-grid.liquid", data:music.artists, icon: "microphone-2", title: "Artists", shape: "square", count: 8 %}
|
{% render "partials/now/media-grid.liquid", data:music.artists, icon: "microphone-2", title: "Artists", shape: "square", count: 8, loading: 'eager' %}
|
||||||
{% render "partials/now/media-grid.liquid", data:music.albums, icon: "vinyl", title: "Albums", shape: "square", count: 8 %}
|
{% render "partials/now/media-grid.liquid", data:music.albums, icon: "vinyl", title: "Albums", shape: "square", count: 8 %}
|
||||||
{% render "partials/now/albumReleases.liquid", albumReleases:albumReleases %}
|
{% render "partials/now/albumReleases.liquid", albumReleases:albumReleases %}
|
||||||
{% render "partials/now/media-grid.liquid", data:books, icon: "books", title: "Books", shape: "vertical", count: 6 %}
|
{% render "partials/now/media-grid.liquid", data:books, icon: "books", title: "Books", shape: "vertical", count: 6 %}
|
||||||
|
|
|
@ -20,7 +20,14 @@
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% image item.image, alt, 'rounded-lg w-full h-full [&>*]:h-full' %}
|
{%- capture loadingStrategy %}
|
||||||
|
{% if loading %}
|
||||||
|
{{ loading }}
|
||||||
|
{% else %}
|
||||||
|
'lazy'
|
||||||
|
{% endif %}
|
||||||
|
{% endcapture -%}
|
||||||
|
{% image item.image, alt, 'rounded-lg w-full h-full [&>*]:h-full', loadingStrategy %}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
@ -26,7 +26,7 @@ meta:
|
||||||
|
|
||||||
Software and services that I use for work and my own enjoyment.
|
Software and services that I use for work and my own enjoyment.
|
||||||
|
|
||||||
{% image 'https://coryd.dev/assets/img/pages/uses.jpg', 'My desk', 'border border-purple-600 dark:border-purple-400 rounded-lg overflow-hidden [&>*]:w-full' %}
|
{% image 'https://coryd.dev/assets/img/pages/uses.jpg', 'My desk', 'border border-purple-600 dark:border-purple-400 rounded-lg overflow-hidden [&>*]:w-full', 'eager' %}
|
||||||
|
|
||||||
<h3 className="text-xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-2xl sm:leading-10 md:text-4xl md:leading-14">Computer setup</h3>
|
<h3 className="text-xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-2xl sm:leading-10 md:text-4xl md:leading-14">Computer setup</h3>
|
||||||
|
|
||||||
|
|
Reference in a new issue