Skip to content

Commit c571821

Browse files
authored
Merge branch 'main' into bust-sponsors-image-cache
2 parents 5285c98 + 1f1bb52 commit c571821

File tree

8 files changed

+26
-17
lines changed

8 files changed

+26
-17
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@v3
1616

1717
- name: Setup Ruby
18-
uses: ruby/setup-ruby@v1.171.0
18+
uses: ruby/setup-ruby@v1
1919
with:
2020
bundler-cache: true
2121

_data/companies.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,10 @@ howdy:
6767
image: /images/sponsors/howdy.svg
6868
address: F. García Cortinas 2357
6969
address_url: https://maps.app.goo.gl/V9VASexXVijNw64p7
70+
71+
mimiquate:
72+
name: Mimiquate
73+
url: https://www.mimiquate.com
74+
image: /images/sponsors/mimiquate.svg
75+
address: Bv. España 2480
76+
address_url: https://maps.app.goo.gl/KUqohrMxJdLubP596

_data/sponsors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
- rootstrap
2-
- gogrow
32
- neocoast
43
- eagerworks
54
- cedarcode
65
- howdy
76
- xmartlabs
87
- effectussoftware
8+
- mimiquate

_sass/sponsors.scss

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
overflow: hidden;
44

55
ul {
6-
padding-left: 2rem;
6+
padding-left: 3rem;
7+
padding-top: 2rem;
8+
padding-bottom: 2rem;
79
display: flex;
810
align-items: center;
9-
gap: 2rem;
11+
gap: 3rem;
1012
border-top: 2px solid black;
1113
background-color: #F6EEEC;
1214

@@ -25,11 +27,8 @@
2527

2628
li {
2729
img {
28-
width: 12rem;
29-
30-
@media (max-width: 425px) {
31-
width: 8rem;
32-
}
30+
max-width: 12rem;
31+
height: 3rem;
3332
}
3433
}
3534
}

assets/js/sponsors.js

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
document.addEventListener("DOMContentLoaded", () => {
2-
const sponsorsList = document.querySelector("#sponsors-list ul")
3-
duplicate(sponsorsList, {times: 2})
4-
addAnimationToSponsorsLists()
5-
})
6-
7-
function addAnimationToSponsorsLists() {
2+
const sponsorsLists = document.querySelectorAll("#sponsors-list ul");
3+
sponsorsLists.forEach((sponsorsList) => duplicate(sponsorsList, { times: 2 }));
84
document.querySelectorAll("#sponsors-list ul").forEach(list => {
95
list.classList.add("infinite-horizontal-animation")
106
})
11-
}
7+
});

images/sponsors/mimiquate.svg

Lines changed: 6 additions & 0 deletions
Loading

images/sponsors/xmartlabs.svg

Lines changed: 1 addition & 1 deletion
Loading

index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
<article>
66
<section>
7+
{% include sponsors.html %}
78
{% include meetups.html %}
89
{% include sponsors.html %}
910
</section>

0 commit comments

Comments
 (0)