From 19eddfdbbc885df50b304299f5ebab719b031657 Mon Sep 17 00:00:00 2001 From: Manuel Rego Casasnovas Date: Wed, 3 Dec 2025 21:29:56 +0100 Subject: [PATCH 1/2] Adding first personal bronze sponsor: Josh Aas Signed-off-by: Manuel Rego Casasnovas --- _data/sponsors.json | 4 ++++ _includes/sponsorship.html | 44 +++++++++++++++++++++++++++++++------- 2 files changed, 40 insertions(+), 8 deletions(-) diff --git a/_data/sponsors.json b/_data/sponsors.json index 9d246da47..1e996b2cd 100644 --- a/_data/sponsors.json +++ b/_data/sponsors.json @@ -10,5 +10,9 @@ "url": "https://sandwich.net/servo", "img": "/img/logos/sandwich.png", "type": "bronze" + }, + { + "name": "Josh Aas", + "type": "bronze" } ] diff --git a/_includes/sponsorship.html b/_includes/sponsorship.html index d42229d1c..f0a47cc2d 100644 --- a/_includes/sponsorship.html +++ b/_includes/sponsorship.html @@ -9,7 +9,11 @@

Partners

{% for partner in partners_sorted %}
  • + {% if partner.img %} {{ partner.name }} logo + {% else %} + {{ partner.name }} + {% endif %}
  • {% endfor %} @@ -30,9 +34,13 @@

    Platinum Sponsors

    @@ -47,9 +55,13 @@

    Gold Sponsors

    @@ -65,9 +77,13 @@

    Silver Sponsors

    @@ -82,9 +98,13 @@

    Bronze Sponsors

    @@ -122,6 +142,14 @@

    Bronze Sponsors

    .logos-home > li { flex: 0 0 50%; + text-align: center; + font-size: var(--step-3); + font-weight: bold; +} + +.logos-home > li > span { + display: inline-block; + margin: 1rem; } @media (max-width: 720px) { From a58c21dfb70e81f74059e132342ec042ffe37c79 Mon Sep 17 00:00:00 2001 From: Manuel Rego Casasnovas Date: Thu, 4 Dec 2025 16:32:54 +0100 Subject: [PATCH 2/2] Applied suggested changes Signed-off-by: Manuel Rego Casasnovas --- _includes/sponsorship.html | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/_includes/sponsorship.html b/_includes/sponsorship.html index f0a47cc2d..0c397a914 100644 --- a/_includes/sponsorship.html +++ b/_includes/sponsorship.html @@ -12,7 +12,7 @@

    Partners

    {% if partner.img %} {{ partner.name }} logo {% else %} - {{ partner.name }} + {{ partner.name }} {% endif %} @@ -38,7 +38,7 @@

    Platinum Sponsors

    {% if sponsor.img %} {% else %} - {{ sponsor.name }} + {{ sponsor.name }} {% endif %} {% if sponsor.url %}{% endif %} @@ -59,7 +59,7 @@

    Gold Sponsors

    {% if sponsor.img %} {% else %} - {{ sponsor.name }} + {{ sponsor.name }} {% endif %} {% if sponsor.url %}{% endif %} @@ -81,7 +81,7 @@

    Silver Sponsors

    {% if sponsor.img %} {% else %} - {{ sponsor.name }} + {{ sponsor.name }} {% endif %} {% if sponsor.url %}{% endif %} @@ -102,7 +102,7 @@

    Bronze Sponsors

    {% if sponsor.img %} {% else %} - {{ sponsor.name }} + {{ sponsor.name }} {% endif %} {% if sponsor.url %}{% endif %} @@ -147,11 +147,6 @@

    Bronze Sponsors

    font-weight: bold; } -.logos-home > li > span { - display: inline-block; - margin: 1rem; -} - @media (max-width: 720px) { .partner-img, .sponsor-img { min-width: 9rem; @@ -161,6 +156,10 @@

    Bronze Sponsors

    .logos-home > li { flex: 0 0 90%; } + + .logos-home > li:first-child { + padding-top: 1.25rem; + } } .inner-container__logos {