Lazy load images, explicity dimensions

This commit is contained in:
Tanner
2026-09-16 18:37:26 +00:00
parent d4a810ca05
commit fb5fcf2f2b
20 changed files with 39 additions and 39 deletions
+4 -4
View File
@@ -66,7 +66,7 @@
<body>
<header>
<div class="nav-wrap">
<a class="brand" href="/"><img src="/assets/logo.png" alt="Protospace" /></a>
<a class="brand" href="/"><img width="360" height="70" src="/assets/logo.png" alt="Protospace" /></a>
<nav class="nav">
<a href="/the-space/">About</a>
<a href="/join-us/">Membership</a>
@@ -82,15 +82,15 @@
<h1>Wood Shop</h1>
<div class="entry">
<figure>
<img width="1280" height="960" src="/assets/wood-shop-1.jpg" alt="Woodworking table saw and work surface" />
<img width="1024" height="768" src="/assets/wood-shop-1-1024x768.jpg" srcset="/assets/wood-shop-1-1024x768.jpg 1024w, /assets/wood-shop-1.jpg 1280w" sizes="(max-width: 760px) calc(100vw - 24px), 750px" alt="Woodworking table saw and work surface" decoding="async" fetchpriority="high" />
</figure>
<figure>
<img width="1280" height="960" src="/assets/wood-shop-2.jpg" alt="Woodworking tools and project workspace" />
<img width="1024" height="768" src="/assets/wood-shop-2-1024x768.jpg" srcset="/assets/wood-shop-2-1024x768.jpg 1024w, /assets/wood-shop-2.jpg 1280w" sizes="(max-width: 760px) calc(100vw - 24px), 750px" alt="Woodworking tools and project workspace" loading="lazy" decoding="async" />
</figure>
<figure>
<img width="1280" height="960" src="/assets/wood-shop-3.jpg" alt="Member using a woodworking power tool" />
<img width="1024" height="768" src="/assets/wood-shop-3-1024x768.jpg" srcset="/assets/wood-shop-3-1024x768.jpg 1024w, /assets/wood-shop-3.jpg 1280w" sizes="(max-width: 760px) calc(100vw - 24px), 750px" alt="Member using a woodworking power tool" loading="lazy" decoding="async" />
</figure>
</div>
</main>