Skip to content

Commit d7aaa9b

Browse files
committed
initial add of supporters page
1 parent 3a5688e commit d7aaa9b

File tree

3 files changed

+83
-1
lines changed

3 files changed

+83
-1
lines changed
+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
_model: page
2+
---
3+
_template: page-with-toc.html
4+
---
5+
title: Supporters
6+
---
7+
description: We are grateful 🙏 to those have directly and indirectly supported
8+
our open source efforts ❤️
9+
---
10+
body:
11+
12+
13+
## Volunteers
14+
15+
Countless people have contributed code, documentation, translations, and
16+
insight. Thank you to all volunteers and community members that have supported
17+
our technology efforts!
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+
- [HTML](https://html.spec.whatwg.org/) /
34+
[CSS](https://www.w3.org/TR/CSS/#css)
35+
- [Lektor](https://www.getlektor.com/)
36+
- [Markdown](https://en.wikipedia.org/wiki/Markdown)
37+
- [NGINX](https://nginx.org/)
38+
- [OpenSSH](https://www.openssh.com/)
39+
- [PHP](https://www.php.net/)
40+
- [Python](https://www.python.org/)
41+
- [Salt](https://saltproject.io/)
42+
- [Wiki.js](https://js.wiki/)
43+
- [WordPress](https://wordpress.org/) / [WP-CLI](https://wp-cli.org/)
44+
- ...and many more!
45+
46+
47+
## Standards
48+
49+
The work we do would be impossible without [open standards][openstandard].
50+
51+
We hope that some day the International Organization for Standardization (ISO)
52+
will no longer hold their standards ransom for a purchase fee.
53+
54+
[openstandard]: https://en.wikipedia.org/wiki/Open_standard
55+
56+
57+
## Financial sponsors
58+
59+
- [Supporters - Creative Commons][ccsupporters]
60+
- Our past and current [GitHub Sponsors][ghsponsors]
61+
62+
[ccsupporters]: https://creativecommons.org/about/support-cc/supporters/
63+
[ghsponsors]: https://github.com/sponsors/creativecommons#sponsors-section-list
64+
65+
66+
## Services
67+
68+
- Cloudflare via [Project Galileo][cloudflare]
69+
- GitHub via their [Social Impact][github] program
70+
- [Google Summer of Code][gsoc]
71+
- [Outreachy][outreachy]
72+
- [PagerDuty for Nonprofits][pagerduty]
73+
- [UptimeRobot][uptimerobot]
74+
75+
[cloudflare]: https://www.cloudflare.com/galileo/
76+
[github]: https://socialimpact.github.com/
77+
[gsoc]: https://summerofcode.withgoogle.com/
78+
[outreachy]: https://www.outreachy.org/
79+
[pagerduty]: https://www.pagerduty.com/industries/non-profit/
80+
[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)