Skip to content

Commit e7003ae

Browse files
author
Josh Simmons
committed
add Eclipse Foundation as first Associate Member
1 parent 3822ccc commit e7003ae

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

content/support/eclipse.svg

+1
Loading

content/support/supporters.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,9 @@ logo = "thunderbird.svg"
6161
[[ecosystem]]
6262
name = "Trixnity"
6363
website = "https://trixnity.gitlab.io/trixnity"
64-
logo = "trixnity.png"
64+
logo = "trixnity.png"
65+
66+
[[associate]]
67+
name = "Eclipse Foundation"
68+
website = "https://eclipse.org"
69+
logo = "eclipse.svg"

sass/_support.scss

+4
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@
7676
--cards-per-row: 5;
7777
}
7878

79+
#associate-supporters .supporters-card {
80+
--cards-per-row: 5;
81+
}
82+
7983
#ecosystem-supporters .supporters-card {
8084
--cards-per-row: 5;
8185
}

templates/support.html

+11
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,17 @@ <h2>Ecosystem Members</h2>
7676
{% endfor %}
7777
</div>
7878
</div>
79+
<div class="supporters-section" id="associate-supporters">
80+
<h2>Associate Members</h2>
81+
<div class="cards">
82+
{% for supporter in supporters.associate %}
83+
<a href="{{ supporter.website }}" class="supporters-card">
84+
<img src="/support/{{ supporter.logo }}" alt="{{ supporter.name }}'s logo">
85+
<span>{{ supporter.name }}</span>
86+
</a>
87+
{% endfor %}
88+
</div>
89+
</div>
7990
</div>
8091
<div id="the-spec">
8192
<div class="content">

0 commit comments

Comments
 (0)