Skip to content

Commit 828f92a

Browse files
committed
Add Sovereign Tech Agency to Acknowledgements page
Signed-off-by: Manuel Rego Casasnovas <[email protected]>
1 parent 7214a9f commit 828f92a

File tree

3 files changed

+25
-7
lines changed

3 files changed

+25
-7
lines changed

_data/partners.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"name": "NLnet Foundation",
4+
"url": "https://nlnet.nl/project/Servo/",
5+
"img": "/img/logos/nlnet.png"
6+
},
7+
{
8+
"name": "Sovereign Tech Agency",
9+
"url": "https://www.sovereign.tech/tech/servo",
10+
"img": "/img/logos/sta.png"
11+
}
12+
]

acknowledgements.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,23 @@ title: Acknowledgements
66
<div class="inner-container subpage-content">
77
<h1>{{ title }}</h1>
88

9-
<p>The Servo Project is dependent on outside funding. It has received grants thanks to the following organizations:</p>
9+
<p>The Servo project is dependent on outside funding. Big thanks to the following organizations that have recently invested in Servo:</p>
1010

11-
<ul id="sponsors">
11+
<ul id="partners">
12+
{% for partner in partners | sort(attribute="name") %}
1213
<li>
13-
<a href="https://nlnet.nl/project/Servo/">
14-
<img src="{{ '/img/nlnet-color.png' | url}}" alt="NLnet Foundation logo" class="sponsor-img" />
14+
<a href="{{ partner.url }}">
15+
<img src="{{ partner.img | url}}" alt="{{ partner.name }} logo" class="partner-img" />
1516
</a>
1617
</li>
18+
{% endfor %}
1719
</ul>
1820

1921
<p>A special thank you to our sponsors who have also contributed monetarily via <a href="https://opencollective.com/servo">Open Collective</a> or on <a href="https://github.com/sponsors/servo">GitHub</a>.
2022
</p>
2123

2224
<h2>Project Resources</h2>
23-
<p>The Servo Project also uses some free services provided by different companies:</p>
25+
<p>The Servo project also uses some free services provided by different companies:</p>
2426

2527
* Repositories and CI infrastructure (<https://github.com/servo>) are hosted by [GitHub](https://github.com/).
2628
* Chat tool (<https://servo.zulipchat.com/>) is provided by [Zulip](https://zulip.com/).
@@ -30,12 +32,16 @@ title: Acknowledgements
3032

3133
<style>
3234

33-
ul#sponsors {
35+
ul#partners {
3436
list-style: none;
37+
display: flex;
38+
flex-wrap: wrap;
39+
align-items: center;
3540
}
3641

37-
.sponsor-img {
42+
.partner-img {
3843
max-width: 15rem;
44+
margin: 2rem;
3945
}
4046

4147
</style>

assets/img/nlnet-color.png

-54.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)