patch 2.2.3: fix typo and missing outline, mastodon reference in head, wrong frontmatter key

This commit is contained in:
madrilene 2024-04-12 10:00:48 +02:00
parent d8aa69e57b
commit 152e9ee2c7
4 changed files with 16 additions and 20 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "eleventy-excellent", "name": "eleventy-excellent",
"version": "2.2.2", "version": "2.2.3",
"description": "Eleventy starter built around the workflow suggested by Andy Bell's buildexcellentwebsit.es.", "description": "Eleventy starter built around the workflow suggested by Andy Bell's buildexcellentwebsit.es.",
"author": "Lene Saile", "author": "Lene Saile",
"license": "ISC", "license": "ISC",

View file

@ -32,9 +32,9 @@
<!-- Links to information about the author(s) of the document --> <!-- Links to information about the author(s) of the document -->
<link rel="author" href="humans.txt" /> <link rel="author" href="humans.txt" />
{% if personal.social.mastodon %} {% if personal.platforms.mastodon %}
<!-- Mastodon verified site --> <!-- Mastodon verified site -->
<link rel="me" href="{{ personal.social.mastodon }}" /> <link rel="me" href="{{ personal.platforms.mastodon }}" />
{% endif %} {% endif %}
<!-- Open Graph meta --> <!-- Open Graph meta -->

View file

@ -14,12 +14,13 @@
} }
.theme-switch .button[aria-pressed='true'] { .theme-switch .button[aria-pressed='true'] {
--_color-primary-contast: color-mix( --_color-primary-contrast: color-mix(
in oklab, in oklab,
var(--color-primary) 85%, var(--color-primary) 85%,
var(--color-base-dark) var(--color-base-dark)
); );
--button-bg: var(--_color-primary-contast); --button-bg: var(--_color-primary-contrast);
--button-text: var(--color-base-light); --button-text: var(--color-base-light);
--button-border: var(--_color-primary-contast); --button-border: var(--_color-primary-contrast);
outline-color: var(--_color-primary-contrast);
} }

View file

@ -3,9 +3,8 @@ title: Built with
permalink: /built-with/index.html permalink: /built-with/index.html
description: 'A list of sites based on / built with Eleventy Excellent. Add yours by submitting a pull request!' description: 'A list of sites based on / built with Eleventy Excellent. Add yours by submitting a pull request!'
layout: page layout: page
grid: sizes: '(max-width: 615px) 50vw, 100vw'
sizes: "(max-width: 615px) 50vw, 100vw" widths: [400, 520]
widths: [400, 520]
--- ---
<p> <p>
@ -26,22 +25,18 @@ grid:
<ul class="grid" role="list" style="--gutter: var(--space-xl) var(--space-m)"> <ul class="grid" role="list" style="--gutter: var(--space-xl) var(--space-m)">
<!-- you find tha data for that in src/_data/builtwith.json --> <!-- you find tha data for that in src/_data/builtwith.json -->
{% for site in builtwith | reverse %} {% for site in builtwith | reverse %}
<li class="grid-card | text-step-min-1">
{% eleventyImage site.screenshot, site.name, null, "lazy", null, sizes, widths %}
<li class="grid-card | text-step-min-1"> <p>{{ site.description }}</p>
{% eleventyImage site.screenshot, site.name, null, "lazy", null, sizes, widths %}
<p> <p>
{{ site.description }} <a href="{{ site.link }}">{{ site.link | replace("https://", "") }}</a>
</p> </p>
</li>
<p>
<a href="{{ site.link }}">{{ site.link | replace("https://", "") }}</a>
</p>
</li>
{% endfor %} {% endfor %}
</ul> </ul>
</section> </section>
{% include 'svg/divider-soft-bottom.svg' %} {% include 'svg/divider-soft-bottom.svg' %}
</article> </article>