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

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "7.2.3",
"version": "7.3.0",
"description": "The source for my personal site. Built using 11ty.",
"type": "module",
"scripts": {

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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -0,0 +1,20 @@
:root {
--grid: repeat(3,minmax(0,1fr));
}
.badge__grid {
display: grid;
gap: var(--sizing-md);
grid-template-columns: var(--grid);
}
.badge__grid > * {
display: flex;
justify-content: center;
}
@media screen and (min-width: 768px) {
:root {
--grid: repeat(4,minmax(0,1fr));
}
}

View file

@ -23,3 +23,5 @@ I build, maintain and design web applications. I've been coding professionally s
I tend to write about whatever strikes me, with a focus on development, technology, automation or issues I run into with these things. This is all typically light on editing with and heavy on spur of the moment thoughts.
[You can also see what I'm doing now](/now), [take a look at the links I've shared recently](/links) or [check out the webrings I'm a member of](/webrings).
{% render "partials/badge-grid.liquid" %}