This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/includes/partials/blocks/badge-grid.liquid
2024-09-12 17:45:02 -07:00

18 lines
No EOL
567 B
Text

<div class="badge-grid">
{%- for badge in badges limit: 8 -%}
<a href="{{ badge.url }}">
<img srcset="
https://cdn.coryd.dev/{{ badge.image }}?class=w100&type=webp 100w,
https://cdn.coryd.dev/{{ badge.image }}?class=w200&type=webp 200w
" sizes="(max-width: 450px) 88px,
200px"
src="https://cdn.coryd.dev/{{ badge.image }}?class=w100&type=webp"
alt="{{ badge.image_alt }}"
loading="lazy"
decoding="async"
width="100"
height="36"
/>
</a>
{%- endfor -%}
</div>