Skip to content

Commit 0a0b3d9

Browse files
authored
Merge pull request creativecommons#729 from creativecommons/supporters
add Supporters page
2 parents 3a5688e + db2390c commit 0a0b3d9

File tree

3 files changed

+84
-1
lines changed

3 files changed

+84
-1
lines changed
+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
_model: page
2+
---
3+
_template: page-with-toc.html
4+
---
5+
title: Supporters
6+
---
7+
description: Creative Commons (CC) is grateful 🙏 to those have directly and
8+
indirectly supported our open source efforts ❤️
9+
---
10+
body:
11+
12+
13+
## Volunteers
14+
15+
Countless people have contributed code, documentation, translations, and
16+
insight to CC's technology efforts. Thank you to all volunteers and community
17+
members that have supported our free/libre and open source (FOSS) activities.
18+
19+
*TODO: Write a script and GitHub action in
20+
[creativecommons/ccos-scripts][ccos-scripts] to populate this section (or a sub
21+
page) with all GitHub contributors.*
22+
23+
[ccos-scripts]: https://github.com/creativecommons/ccos-scripts
24+
25+
26+
## Software
27+
28+
The following free/libre and open source software projects are essential to our
29+
technology efforts:
30+
- [Apache2](https://httpd.apache.org/)
31+
- [Bash](https://www.gnu.org/software/bash/)
32+
- [Debian](https://www.debian.org/)
33+
- [Django](https://www.djangoproject.com/)
34+
- [HTML](https://html.spec.whatwg.org/) /
35+
[CSS](https://www.w3.org/TR/CSS/#css)
36+
- [Lektor](https://www.getlektor.com/)
37+
- [Markdown](https://en.wikipedia.org/wiki/Markdown)
38+
- [NGINX](https://nginx.org/)
39+
- [OpenSSH](https://www.openssh.com/)
40+
- [PHP](https://www.php.net/)
41+
- [Python](https://www.python.org/)
42+
- [Salt](https://saltproject.io/)
43+
- [Wiki.js](https://js.wiki/)
44+
- [WordPress](https://wordpress.org/) / [WP-CLI](https://wp-cli.org/)
45+
- ...and many more!
46+
47+
48+
## Standards
49+
50+
The work we do would be impossible without [open standards][openstandard].
51+
52+
We hope that some day the International Organization for Standardization (ISO)
53+
will no longer hold their standards ransom for a purchase fee.
54+
55+
[openstandard]: https://en.wikipedia.org/wiki/Open_standard
56+
57+
58+
## Financial sponsors
59+
60+
- [Supporters - Creative Commons][ccsupporters]
61+
- Our past and current [GitHub Sponsors][ghsponsors]
62+
63+
[ccsupporters]: https://creativecommons.org/about/support-cc/supporters/
64+
[ghsponsors]: https://github.com/sponsors/creativecommons#sponsors-section-list
65+
66+
67+
## Programs and services
68+
69+
- Cloudflare via [Project Galileo][cloudflare]
70+
- GitHub via their [Social Impact][github] program
71+
- [Google Summer of Code][gsoc]
72+
- [Outreachy][outreachy]
73+
- [PagerDuty for Nonprofits][pagerduty]
74+
- [UptimeRobot][uptimerobot]
75+
76+
[cloudflare]: https://www.cloudflare.com/galileo/
77+
[github]: https://socialimpact.github.com/
78+
[gsoc]: https://summerofcode.withgoogle.com/
79+
[outreachy]: https://www.outreachy.org/
80+
[pagerduty]: https://www.pagerduty.com/industries/non-profit/
81+
[uptimerobot]: https://uptimerobot.com/

themes/vocabulary_theme/templates/layout.html

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@
100100
['/community/write-a-blog-post', 'Write a Blog Post'],
101101
['/community/code-of-conduct', 'Code of Conduct'],
102102
['/community/code-of-conduct/enforcement', 'Code of Conduct Enforcement'],
103+
['/community/supporters', 'Supporters'],
103104
] %}
104105
<a class="navbar-item" href="{{ href|url }}">{{ title }}</a>
105106
{% endfor %}

themes/vocabulary_theme/templates/page-with-toc.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ <h1>{{ this.title }}</h1>
5656
['/community/community-team', 'Community Team'],
5757
['/community/write-a-blog-post', 'Write a Blog Post'],
5858
['/community/code-of-conduct', 'Code of Conduct'],
59+
['/community/supporters', 'Supporters'],
5960
] %}
6061
<li>
6162
<a class="{% if this.path == href %} is-active {% endif%} link" href="{{ href|url }}">{{ title }}</a>
@@ -77,7 +78,7 @@ <h1>{{ this.title }}</h1>
7778
</ul>
7879
{% endif %}
7980
</li>
80-
{% if (href != '/community/code-of-conduct') %}
81+
{% if (href != '/community/supporters') %}
8182
<hr class="divider">
8283
{% endif %}
8384
{% endfor %}

0 commit comments

Comments
 (0)