chore: badge grid

This commit is contained in:
Cory Dransfeldt 2024-03-04 09:29:00 -08:00
parent c2f0160e13
commit 8725c41b6d
No known key found for this signature in database
12 changed files with 49 additions and 1 deletions

View file

@ -0,0 +1,26 @@
{% capture css %}
{% render "../../assets/styles/components/badge-grid.css" %}
{% endcapture %}
<style>{{ css }}</style>
<div class="badge__grid">
<a href="https://11ty.dev">
{% image './src/assets/img/badges/eleventy.png', 'Made with 11ty' %}
</a>
<a href="https://social.lol/@cory">
{% image './src/assets/img/badges/mastodon.png', 'Follow me on Mastodon' %}
</a>
{% image './src/assets/img/badges/notarobot.png', 'Not a robot' %}
<a href="https://github.com/cdransf">
{% image './src/assets/img/badges/github.png', 'Check out my GitHub' %}
</a>
<a href="https://www.last.fm/user/coryd_">
{% image './src/assets/img/badges/lastfm.png', 'Check out my GitHub' %}
</a>
{% image './src/assets/img/badges/validhtml5.png', 'Valid HTML5' %}
<a href="https://coryd.dev/feeds">
{% image './src/assets/img/badges/validrss.png', 'Valid RSS' %}
</a>
<a href="https://coryd.dev/uses">
{% image './src/assets/img/badges/macOS.png', 'Made with macOS' %}
</a>
</div>