From a4bc0bb74966327f8faa6e78df622ee73f1e9d06 Mon Sep 17 00:00:00 2001 From: Santiago Bartesaghi Date: Wed, 8 Jan 2025 10:00:24 -0300 Subject: [PATCH 1/3] Update sponsors 2025 --- _data/companies.yml | 7 +++++++ _data/sponsors.yml | 2 +- images/sponsors/mimiquate.svg | 6 ++++++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 images/sponsors/mimiquate.svg diff --git a/_data/companies.yml b/_data/companies.yml index 3f48e56..79e4a98 100644 --- a/_data/companies.yml +++ b/_data/companies.yml @@ -67,3 +67,10 @@ howdy: image: /images/sponsors/howdy.svg address: F. García Cortinas 2357 address_url: https://maps.app.goo.gl/V9VASexXVijNw64p7 + +mimiquate: + name: Mimiquate + url: https://www.mimiquate.com + image: /images/sponsors/mimiquate.svg + address: Bv. España 2480 + address_url: https://maps.app.goo.gl/KUqohrMxJdLubP596 diff --git a/_data/sponsors.yml b/_data/sponsors.yml index d62923a..399874e 100644 --- a/_data/sponsors.yml +++ b/_data/sponsors.yml @@ -1,8 +1,8 @@ - rootstrap -- gogrow - neocoast - eagerworks - cedarcode - howdy - xmartlabs - effectussoftware +- mimiquate diff --git a/images/sponsors/mimiquate.svg b/images/sponsors/mimiquate.svg new file mode 100644 index 0000000..cc3ef07 --- /dev/null +++ b/images/sponsors/mimiquate.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file From 879dfba9830f1c6e5556b9d6b63fd4f3ca04cc4a Mon Sep 17 00:00:00 2001 From: Santiago Bartesaghi Date: Wed, 8 Jan 2025 10:03:20 -0300 Subject: [PATCH 2/3] Render sponsors twice --- assets/js/sponsors.js | 10 +++------- index.md | 1 + 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/assets/js/sponsors.js b/assets/js/sponsors.js index 5648d6d..0d4b3e5 100644 --- a/assets/js/sponsors.js +++ b/assets/js/sponsors.js @@ -1,11 +1,7 @@ document.addEventListener("DOMContentLoaded", () => { - const sponsorsList = document.querySelector("#sponsors-list ul") - duplicate(sponsorsList, {times: 2}) - addAnimationToSponsorsLists() -}) - -function addAnimationToSponsorsLists() { + const sponsorsLists = document.querySelectorAll("#sponsors-list ul"); + sponsorsLists.forEach((sponsorsList) => duplicate(sponsorsList, { times: 2 })); document.querySelectorAll("#sponsors-list ul").forEach(list => { list.classList.add("infinite-horizontal-animation") }) -} +}); diff --git a/index.md b/index.md index 27a550f..b1b3c2b 100644 --- a/index.md +++ b/index.md @@ -4,6 +4,7 @@
+ {% include sponsors.html %} {% include meetups.html %} {% include sponsors.html %}
From 32208391505ae41ceb54ae2e9ca94dfbd1e2415f Mon Sep 17 00:00:00 2001 From: Santiago Bartesaghi Date: Wed, 8 Jan 2025 10:21:46 -0300 Subject: [PATCH 3/3] Fix sponsors display --- _sass/sponsors.scss | 13 ++++++------- images/sponsors/xmartlabs.svg | 2 +- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/_sass/sponsors.scss b/_sass/sponsors.scss index 12e3747..7798a20 100644 --- a/_sass/sponsors.scss +++ b/_sass/sponsors.scss @@ -3,10 +3,12 @@ overflow: hidden; ul { - padding-left: 2rem; + padding-left: 3rem; + padding-top: 2rem; + padding-bottom: 2rem; display: flex; align-items: center; - gap: 2rem; + gap: 3rem; border-top: 2px solid black; background-color: #F6EEEC; @@ -25,11 +27,8 @@ li { img { - width: 12rem; - - @media (max-width: 425px) { - width: 8rem; - } + max-width: 12rem; + height: 3rem; } } } diff --git a/images/sponsors/xmartlabs.svg b/images/sponsors/xmartlabs.svg index 2653ff1..1ff1dff 100644 --- a/images/sponsors/xmartlabs.svg +++ b/images/sponsors/xmartlabs.svg @@ -1 +1 @@ - + \ No newline at end of file