chore: image improvements

This commit is contained in:
Cory Dransfeldt 2024-09-12 17:28:09 -07:00
parent 9c3d8e213a
commit 7dde72d1cb
No known key found for this signature in database
15 changed files with 138 additions and 164 deletions

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.7.22", "version": "24.8.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.7.22", "version": "24.8.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",
@ -1743,9 +1743,9 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/electron-to-chromium": { "node_modules/electron-to-chromium": {
"version": "1.5.20", "version": "1.5.21",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.20.tgz", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.21.tgz",
"integrity": "sha512-74mdl6Fs1HHzK9SUX4CKFxAtAe3nUns48y79TskHNAG6fGOlLfyKA4j855x+0b5u8rWJIrlaG9tcTPstMlwjIw==", "integrity": "sha512-+rBAerCpQvFSPyAO677i5gJuWGO2WFsoujENdcMzsrpP7Ebcc3pmpERgU8CV4fFF10a5haP4ivnFQ/AmLICBVg==",
"dev": true, "dev": true,
"license": "ISC" "license": "ISC"
}, },

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.7.22", "version": "24.8.0",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -2,16 +2,18 @@
{%- for badge in badges limit: 8 -%} {%- for badge in badges limit: 8 -%}
<a href="{{ badge.url }}"> <a href="{{ badge.url }}">
<img srcset=" <img srcset="
https://cdn.coryd.dev/{{ badge.image }}?class=w50 50w, https://cdn.coryd.dev/{{ badge.image }}?class=w50&type=webp 50w,
https://cdn.coryd.dev/{{ badge.image }}?class=w100 100w, https://cdn.coryd.dev/{{ badge.image }}?class=w100&type=webp 100w,
https://cdn.coryd.dev/{{ badge.image }}?class=w200 200w, https://cdn.coryd.dev/{{ badge.image }}?class=w200&type=webp 200w
" sizes="(max-width: 450px) 88px, " sizes="(max-width: 450px) 88px,
(max-width: 850px) 176px, (max-width: 850px) 176px,
(max-width: 1000px) 352px, 200px"
704px" src="https://cdn.coryd.dev/{{ badge.image }}?class=w200" alt="{{ badge.image_alt }}" loading="lazy" src="https://cdn.coryd.dev/{{ badge.image }}?class=w50&type=webp"
alt="{{ badge.image_alt }}"
loading="lazy"
decoding="async" decoding="async"
width="88" width="50"
height="31" height="18"
/> />
</a> </a>
{%- endfor -%} {%- endfor -%}

View file

@ -1,19 +1,17 @@
<img <img
srcset=" srcset="
https://cdn.coryd.dev/{{ image }}?class=bannersm 256w, https://cdn.coryd.dev/{{ image }}?class=bannersm&type=webp 256w,
https://cdn.coryd.dev/{{ image }}?class=bannermd 512w, https://cdn.coryd.dev/{{ image }}?class=bannermd&type=webp 512w,
https://cdn.coryd.dev/{{ image }}?class=bannerbase 1024w, https://cdn.coryd.dev/{{ image }}?class=bannerbase&type=webp 1024w
https://cdn.coryd.dev/{{ image }}?class=bannerlg 2048w
" "
sizes="(max-width: 450px) 256px, sizes="(max-width: 450px) 256px,
(max-width: 850px) 512px, (max-width: 850px) 512px
(max-width: 1000px) 1024px, 1024px"
2048px" src="https://cdn.coryd.dev/{{ image }}?class=bannersm&type=webp"
src="https://cdn.coryd.dev/{{ image }}?class=bannerlg"
alt="{{ alt }}" alt="{{ alt }}"
class="image-banner" class="image-banner"
loading="eager" loading="lazy"
decoding="async" decoding="async"
width="1080" width="720"
height="720" height="480"
/> />

View file

@ -20,39 +20,31 @@
{%- if shape == 'square' -%} {%- if shape == 'square' -%}
<img <img
srcset=" srcset="
https://cdn.coryd.dev{{ item.image }}?class=squaresm 200w, https://cdn.coryd.dev{{ item.image }}?class=squaresm&type=webp 200w,
https://cdn.coryd.dev{{ item.image }}?class=squaremd 400w, https://cdn.coryd.dev{{ item.image }}?class=squaremd&type=webp 400w
https://cdn.coryd.dev{{ item.image }}?class=squarebase 800w
" "
sizes="(max-width: 450px) 200px, sizes="(max-width: 450px) 200px, 400px"
(max-width: 850px) 400px, src="https://cdn.coryd.dev{{ item.image }}?class=squaresm&type=webp"
(max-width: 1000px) 800px,
800px"
src="https://cdn.coryd.dev{{ item.image }}?class=squarebase"
alt="{{ alt }}"
loading="{{ loadingStrategy }}"
decoding="async"
width="240"
height="240"
/>
{%- else -%}
<img
srcset="
https://cdn.coryd.dev{{ item.image }}?class=verticalsm 200w,
https://cdn.coryd.dev{{ item.image }}?class=verticalmd 400w,
https://cdn.coryd.dev{{ item.image }}?class=verticalbase 800w
"
sizes="(max-width: 450px) 200px,
(max-width: 850px) 400px,
(max-width: 1000px) 800px,
800px"
src="https://cdn.coryd.dev{{ item.image }}?class=verticalbase"
alt="{{ alt }}" alt="{{ alt }}"
loading="{{ loadingStrategy }}" loading="{{ loadingStrategy }}"
decoding="async" decoding="async"
width="200" width="200"
height="307" height="200"
/> />
{%- else -%}
<img
srcset="
https://cdn.coryd.dev{{ item.image }}?class=verticalsm&type=webp 200w,
https://cdn.coryd.dev{{ item.image }}?class=verticalmd&type=webp 400w
"
sizes="(max-width: 450px) 200px, 400px"
src="https://cdn.coryd.dev{{ item.image }}?class=verticalsm&type=webp"
alt="{{ alt }}"
loading="{{ loadingStrategy }}"
decoding="async"
width="200"
height="307"
/>
{%- endif -%} {%- endif -%}
</div> </div>
</a> </a>

View file

@ -5,12 +5,11 @@
<div class="meta"> <div class="meta">
<img <img
srcset=" srcset="
https://cdn.coryd.dev{{ item.image }}?class=w50 50w, https://cdn.coryd.dev{{ item.image }}?class=w50&type=webp 50w,
https://cdn.coryd.dev{{ item.image }}?class=w100 100w, https://cdn.coryd.dev{{ item.image }}?class=w100&type=webp 100w
https://cdn.coryd.dev{{ item.image }}?class=w200 200w,
" "
sizes="(max-width: 1000px) 50px, 100px, 200px" sizes="(max-width: 450px) 50px, 100px"
src="https://cdn.coryd.dev{{ item.image }}?class=w200" src="https://cdn.coryd.dev{{ item.image }}?class=w50&type=webp"
alt="{{ alt }}" alt="{{ alt }}"
loading="lazy" loading="lazy"
decoding="async" decoding="async"

View file

@ -22,15 +22,11 @@
{%- assign loadingStrategy = loading | default: 'lazy' -%} {%- assign loadingStrategy = loading | default: 'lazy' -%}
<img <img
srcset=" srcset="
https://cdn.coryd.dev{{ item.backdrop }}?class=bannersm 256w, https://cdn.coryd.dev{{ item.backdrop }}?class=bannersm&type=webp 256w,
https://cdn.coryd.dev{{ item.backdrop }}?class=bannermd 512w, https://cdn.coryd.dev{{ item.backdrop }}?class=bannermd&type=webp 512w
https://cdn.coryd.dev{{ item.backdrop }}?class=bannerbase 1024w
" "
sizes="(max-width: 450px) 256px, sizes="(max-width: 450px) 256px, 512px"
(max-width: 850px) 512px, src="https://cdn.coryd.dev{{ item.backdrop }}?class=bannersm&type=webp"
(max-width: 1000px) 1024px,
1024px"
src="https://cdn.coryd.dev{{ item.backdrop }}?class=bannerbase"
alt="{{ alt }}" alt="{{ alt }}"
loading="{{ loadingStrategy }}" loading="{{ loadingStrategy }}"
decoding="async" decoding="async"

View file

@ -2,16 +2,16 @@
<div class="flex-centered justify-centered"> <div class="flex-centered justify-centered">
<img <img
srcset=" srcset="
https://cdn.coryd.dev/{{ logo }}?class=w200 200w, https://cdn.coryd.dev/{{ logo }}?class=w200&type=webp 200w,
https://cdn.coryd.dev/{{ logo }}?class=w400 400w, https://cdn.coryd.dev/{{ logo }}?class=w400&type=webp 400w,
https://cdn.coryd.dev/{{ logo }}?class=w800 800w, https://cdn.coryd.dev/{{ logo }}?class=w800&type=webp 800w,
https://cdn.coryd.dev/{{ logo }}?class=w1600 1600w https://cdn.coryd.dev/{{ logo }}?class=w1600&type=webp 1600w
" "
sizes="(max-width: 450px) 200px, sizes="(max-width: 450px) 200px,
(max-width: 850px) 400px, (max-width: 850px) 400px,
(max-width: 1000px) 800px, (max-width: 1000px) 800px,
1600px" 1200px"
src="https://cdn.coryd.dev/{{ logo }}?class=1600" src="https://cdn.coryd.dev/{{ logo }}?class=w200&type=webp"
alt="The Claw Webring" alt="The Claw Webring"
loading="lazy" loading="lazy"
decoding="async" decoding="async"

View file

@ -16,18 +16,17 @@ schema: book
<div class="book-display"> <div class="book-display">
<img <img
srcset=" srcset="
https://cdn.coryd.dev{{ book.image }}?class=verticalsm 200w, https://cdn.coryd.dev{{ book.image }}?class=verticalsm&type=webp 200w,
https://cdn.coryd.dev{{ book.image }}?class=verticalmd 400w, https://cdn.coryd.dev{{ book.image }}?class=verticalmd&type=webp 400w,
https://cdn.coryd.dev{{ book.image }}?class=verticalbase 800w, https://cdn.coryd.dev{{ book.image }}?class=verticalbase&type=webp 800w
https://cdn.coryd.dev{{ book.image }}?class=verticallg 1200w
" "
sizes="(max-width: 450px) 203px, sizes="(max-width: 450px) 203px,
(max-width: 850px) 406px, (max-width: 850px) 406px,
(max-width: 1000px) 812px, (max-width: 1000px) 812px,
1624px" 812px"
src="https://cdn.coryd.dev{{ book.image }}?class=verticallg" src="https://cdn.coryd.dev{{ book.image }}?class=verticalsm&type=webp"
alt="{{ alt }}" alt="{{ alt }}"
loading="eager" loading="lazy"
decoding="async" decoding="async"
width="200" width="200"
height="307" height="307"

View file

@ -14,40 +14,36 @@ schema: books
{% render "partials/blocks/banners/rss.liquid", url: "/feeds/books", text: "Subscribe to my books feed or follow along on this page" %} {% render "partials/blocks/banners/rss.liquid", url: "/feeds/books", text: "Subscribe to my books feed or follow along on this page" %}
<hr /> <hr />
{% for book in bookData %} {% for book in bookData %}
{% capture alt %}{{ book.title }} by {{ book.authors }}{% endcapture %} {% capture alt %}{{ book.title }} by {{ book.authors }}{% endcapture %}
<article class="book-entry"> <article class="book-entry">
<a href="{{ book.url }}">
<img
srcset="
https://cdn.coryd.dev{{ book.image }}?class=verticalsm 200w,
https://cdn.coryd.dev{{ book.image }}?class=verticalmd 400w,
https://cdn.coryd.dev{{ book.image }}?class=verticalbase 800w,
https://cdn.coryd.dev{{ book.image }}?class=verticallg 1200w
"
sizes="(max-width: 450px) 200px,
(max-width: 850px) 400px,
(max-width: 1000px) 800px,
1200px"
src="https://cdn.coryd.dev{{ book.image }}?class=verticallg 1200w"
alt="{{ alt }}"
loading="eager"
decoding="async"
width="200"
height="307"
/>
</a>
<div class="book-meta">
<a href="{{ book.url }}"> <a href="{{ book.url }}">
<p class="title"><strong>{{ book.title }}</strong></p> <img
srcset="
https://cdn.coryd.dev{{ book.image }}?class=verticalsm&type=webp 200w,
https://cdn.coryd.dev{{ book.image }}?class=verticalmd&type=webp 400w
"
sizes="(max-width: 450px) 200px,
400px"
src="https://cdn.coryd.dev{{ book.image }}?class=verticalsm&type=webp"
alt="{{ alt }}"
loading="lazy"
decoding="async"
width="200"
height="307"
/>
</a> </a>
{% if book.author %} <div class="book-meta">
<p class="sub-meta">By {{ book.author }}</p> <a href="{{ book.url }}">
{% endif %} <p class="title"><strong>{{ book.title }}</strong></p>
{% if book.progress %} </a>
{%- assign percentage = book.progress | append: '%' -%} {% if book.author %}
{% render "partials/media/progress-bar.liquid", percentage:percentage %} <p class="sub-meta">By {{ book.author }}</p>
{% endif %} {% endif %}
{% if book.description %}<div class="description">{{ book.description | normalize_whitespace | markdown | truncatewords: 50 }}</div>{% endif %} {% if book.progress %}
</div> {%- assign percentage = book.progress | append: '%' -%}
</article> {% render "partials/media/progress-bar.liquid", percentage:percentage %}
{% endif %}
{% if book.description %}<div class="description">{{ book.description | normalize_whitespace | markdown | truncatewords: 50 }}</div>{% endif %}
</div>
</article>
{% endfor %} {% endfor %}

View file

@ -24,21 +24,19 @@ schema: artist
<div class="artist-display"> <div class="artist-display">
<img <img
srcset=" srcset="
https://cdn.coryd.dev{{ artist.image }}?class=w200 200w, https://cdn.coryd.dev{{ artist.image }}?class=w200&type=webp 200w,
https://cdn.coryd.dev{{ artist.image }}?class=w600 400w, https://cdn.coryd.dev{{ artist.image }}?class=w600&type=webp 400w,
https://cdn.coryd.dev{{ artist.image }}?class=w800 800w, https://cdn.coryd.dev{{ artist.image }}?class=w800&type=webp 800w
https://cdn.coryd.dev{{ artist.image }}?class=w1600 1200w
" "
sizes="(max-width: 450px) 200px, sizes="(max-width: 450px) 200px,
(max-width: 850px) 400px, (max-width: 850px) 400px,
(max-width: 1000px) 800px, 800px"
1200px" src="https://cdn.coryd.dev{{ artist.image }}?class=w200&type=webp"
src="https://cdn.coryd.dev{{ artist.image }}?class=w1600"
alt="{{ alt }}" alt="{{ alt }}"
loading="eager" loading="eager"
decoding="async" decoding="async"
width="480" width="200"
height="480" height="200"
/> />
<div class="artist-meta"> <div class="artist-meta">
<p class="title"><strong>{{ artist.name }}</strong></p> <p class="title"><strong>{{ artist.name }}</strong></p>

View file

@ -15,20 +15,22 @@ schema: blog
{%- if post.image -%} {%- if post.image -%}
<img <img
srcset=" srcset="
https://cdn.coryd.dev/{{ post.image }}?class=w200 200w, https://cdn.coryd.dev/{{ post.image }}?class=w200&type=webp 200w,
https://cdn.coryd.dev/{{ post.image }}?class=w400 400w, https://cdn.coryd.dev/{{ post.image }}?class=w400&type=webp 400w,
https://cdn.coryd.dev/{{ post.image }}?class=w800 800w, https://cdn.coryd.dev/{{ post.image }}?class=w800&type=webp 800w,
https://cdn.coryd.dev/{{ post.image }}?class=w1600 1600w https://cdn.coryd.dev/{{ post.image }}?class=w1600&type=webp 1600w
" "
sizes="(max-width: 450px) 200px, sizes="(max-width: 450px) 200px,
(max-width: 850px) 400px, (max-width: 850px) 400px,
(max-width: 1000px) 800px, (max-width: 1000px) 800px,
1600px" 1200px"
src="https://cdn.coryd.dev/{{ post.image }}?class=w1600" src="https://cdn.coryd.dev/{{ post.image }}?class=w200"
alt="{{ post.image_alt }}" alt="{{ post.image_alt }}"
class="image-banner" class="image-banner"
loading="lazy" loading="eager"
decoding="async" decoding="async"
width="200"
height="auto"
/> />
{%- endif -%} {%- endif -%}
{{ post.content | markdown }} {{ post.content | markdown }}

View file

@ -14,22 +14,20 @@ schema: movie
<article class="watching-focus"> <article class="watching-focus">
<img <img
srcset=" srcset="
https://cdn.coryd.dev{{ movie.backdrop }}?class=bannersm 256w, https://cdn.coryd.dev{{ movie.backdrop }}?class=bannersm&type=webp 256w,
https://cdn.coryd.dev{{ movie.backdrop }}?class=bannermd 512w, https://cdn.coryd.dev{{ movie.backdrop }}?class=bannermd&type=webp 512w,
https://cdn.coryd.dev{{ movie.backdrop }}?class=bannerbase 1024w, https://cdn.coryd.dev{{ movie.backdrop }}?class=bannerbase&type=webp 1024w
https://cdn.coryd.dev{{ movie.backdrop }}?class=bannerlg 2048w
" "
sizes="(max-width: 450px) 256px, sizes="(max-width: 450px) 256px,
(max-width: 850px) 512px, (max-width: 850px) 512px,
(max-width: 1000px) 1024px, 1024px"
2048px" src="https://cdn.coryd.dev{{ movie.backdrop }}?class=bannersm&type=webp"
src="https://cdn.coryd.dev{{ movie.backdrop }}?class=bannerlg"
alt="{{ alt }}" alt="{{ alt }}"
class="image-banner" class="image-banner"
loading="eager" loading="eager"
decoding="async" decoding="async"
width="1080" width="256"
height="720" height="180"
/> />
<div class="watching-meta"> <div class="watching-meta">
<p class="title"><strong>{{ movie.title }}</strong>{%- if movie.year and not movie.rating %} ({{ movie.year }}){%- endif -%}</p> <p class="title"><strong>{{ movie.title }}</strong>{%- if movie.year and not movie.rating %} ({{ movie.year }}){%- endif -%}</p>

View file

@ -15,22 +15,20 @@ schema: show
<article class="watching-focus"> <article class="watching-focus">
<img <img
srcset=" srcset="
https://cdn.coryd.dev{{ show.backdrop }}?class=bannersm 256w, https://cdn.coryd.dev{{ show.backdrop }}?class=bannersm&type=webp 256w,
https://cdn.coryd.dev{{ show.backdrop }}?class=bannermd 512w, https://cdn.coryd.dev{{ show.backdrop }}?class=bannermd&type=webp 512w,
https://cdn.coryd.dev{{ show.backdrop }}?class=bannerbase 1024w, https://cdn.coryd.dev{{ show.backdrop }}?class=bannerbase&type=webp 1024w
https://cdn.coryd.dev{{ show.backdrop }}?class=bannerlg 2048w
" "
sizes="(max-width: 450px) 256px, sizes="(max-width: 450px) 256px,
(max-width: 850px) 512px, (max-width: 850px) 512px,
(max-width: 1000px) 1024px, 1024px"
2048px" src="https://cdn.coryd.dev{{ show.backdrop }}?class=bannersm&type=webp"
src="https://cdn.coryd.dev/{{ show.backdrop }}?class=bannerlg"
alt="{{ alt }}" alt="{{ alt }}"
class="image-banner" class="image-banner"
loading="eager" loading="eager"
decoding="async" decoding="async"
width="1080" width="256"
height="720" height="180"
/> />
<div class="watching-meta"> <div class="watching-meta">
<p class="title"><strong>{{ show.title }}</strong>{%- if show.year %} ({{ show.year }}){%- endif -%}</p> <p class="title"><strong>{{ show.title }}</strong>{%- if show.year %} ({{ show.year }}){%- endif -%}</p>

View file

@ -8,25 +8,21 @@ permalink: /about.html
{%- assign show = tv.recentlyWatched | first -%} {%- assign show = tv.recentlyWatched | first -%}
<div class="avatar-wrapper flex-centered"> <div class="avatar-wrapper flex-centered">
<div class="interior"> <div class="interior">
{%- capture about_alt -%}{{ globals.site_name }} - image by @joel@fosstodon.org{%- endcapture -%} {%- capture about_alt -%}{{ globals.site_name }} - image by @joel@fosstodon.org{%- endcapture -%}
<img <img
srcset=" srcset="
https://cdn.coryd.dev/{{ globals.about }}?class=squaresm 200w, https://cdn.coryd.dev/{{ globals.about }}?class=squaresm&type=webp 200w,
https://cdn.coryd.dev/{{ globals.about }}?class=squaremd 400w, https://cdn.coryd.dev/{{ globals.about }}?class=squaremd&type=webp 400w,
https://cdn.coryd.dev/{{ globals.about }}?class=squarebase 800w, https://cdn.coryd.dev/{{ globals.about }}?class=squarebase&type=webp 800w
https://cdn.coryd.dev/{{ globals.about }}?class=squarelg 1200w "
" sizes="(max-width: 450px) 200px, (max-width: 850px) 400px, 800px"
sizes="(max-width: 450px) 200px, src="https://cdn.coryd.dev/{{ globals.about }}?class=squaresm&type=webp"
(max-width: 850px) 400px, alt="{{ about_alt }}"
(max-width: 1000px) 800px, loading="eager"
1200px" decoding="async"
src="https://cdn.coryd.dev/{{ globals.about }}?class=squarelg" width="200"
alt="{{ about_alt }}" height="200"
loading="eager" />
decoding="async"
width="600"
height="600"
/>
</div> </div>
</div> </div>
<h2 class="text-centered">Hi, I'm Cory</h2> <h2 class="text-centered">Hi, I'm Cory</h2>