mediumish-theme-jekyll icon indicating copy to clipboard operation
mediumish-theme-jekyll copied to clipboard

Allow serving of .webp images with .png fallbacks?

Open GiacomoLaw opened this issue 5 years ago • 2 comments

The webp format is great, can you add the ability to use it in the post boxes? I already serve my header as webp with a backup of PNG like so:

<picture>
	<source srcset="/assets/images/header.webp" type="image/webp" class="headerimage">
	<source srcset="/assets/images/header.png" class="headerimage" type="image/png">
	<img src="/assets/images/header.png" class="headerimage" alt="Taka No Dan">
</picture>

Would be great to have the option to serve webp on the post boxes, so the homepage loads even quicker.

Thanks!

GiacomoLaw avatar Mar 22 '19 12:03 GiacomoLaw

I'll look into it!

wowthemesnet avatar Mar 22 '19 13:03 wowthemesnet

Awesome, thanks.

GiacomoLaw avatar Mar 22 '19 13:03 GiacomoLaw