website/www/conservancy/templates/sponsors.html

64 lines
2.6 KiB
HTML
Raw Normal View History

2012-08-27 14:19:13 +00:00
{% extends "base_conservancy.html" %}
{% block subtitle %}Sponsors - {% endblock %}
{% block category %}sponsors{% endblock %}
2014-12-03 19:26:55 +00:00
{% block head %}
<meta charset="UTF-8"/>
2014-12-03 19:27:47 +00:00
{% endblock %}
2014-12-03 19:26:55 +00:00
2012-08-27 14:19:13 +00:00
{% block content %}
<h1>Conservancy's Sponsors &amp; Supporters</h1>
2012-08-27 14:19:13 +00:00
<p>Conservancy relies on donations from the general public to support its
2012-11-30 15:25:46 +00:00
work, and asks everyone <a href="/donate">to donate generously</a>.
2014-12-03 17:51:21 +00:00
<h2>Sponsors</h2>
2014-12-03 17:36:53 +00:00
<p>The sponsors whose logos are listed below (in alphabetical order) have donated
2012-08-27 14:19:13 +00:00
substantially in the past twelve months to support the ongoing work of
Conservancy. These sponsors support our work through financial
contributions and have asked for public acknowledgment of their
2012-08-27 14:19:13 +00:00
contributions. Conservancy graciously thanks these sponsors for their
support, but doesn't necessarily endorse nor promote any specific activity of
any of its sponsors.</p>
2012-08-27 14:19:13 +00:00
2016-12-09 21:17:57 +00:00
<!-- logos should be 250x250 maximum. -->
<ul id="sponsor">
2018-12-06 14:54:14 +00:00
<li><a rel="nofollow" href="https://google.com"><img src="/img/sponsors/google.png" height="76" width="238" alt="Google" /></a></li>
<li><a rel="nofollow" href="https://joshtriplett.org"><img src="/img/sponsors/2020_Josh-Triplett.jpg" height="167" width="250" alt="Josh Triplett" /></a></li>
<li><a rel="nofollow" href="https://code.wildebeest.org/">Mark Wielaard</a></li>
2017-10-16 17:48:33 +00:00
<li><a rel="nofollow" href="https://www.mozilla.org/foundation/"><img src="/img/sponsors/mozilla.png" height="101" width="250" alt="Mozilla Foundation" /></a></li>
<li><a rel="nofollow" href="https://www.privateinternetaccess.com/"><img src="/img/sponsors/privateinternetaccess.jpg" height="52" width="220" alt="Private Internet Access" /></a></li>
<li><a rel="nofollow" href="https://www.redhat.com/"><img src="/img/sponsors/redhat.png" height="80" width="250" alt="Red Hat" /></a></li>
2012-08-27 14:19:13 +00:00
</ul>
<!-- This section will be added when we have in-kind contributions -->
<!-- <h3>In-Kind Donation of Services</h3> -->
<!-- <p>Conservancy would also like to thank the following companies who have -->
<!-- donated services and/or resources in-kind to support Conservancy's -->
<!-- work.</p> -->
<!-- <ul> -->
<!-- </ul> -->
2014-12-03 18:11:34 +00:00
<br/>
2014-12-03 17:34:43 +00:00
<hr/>
2014-12-03 18:11:34 +00:00
<br/>
2014-12-03 17:51:21 +00:00
<h2>Supporters</h2>
<p>Conservancy currently has {{supporters_count|safe}} Supporters.
Conservancy Supporters are individuals (or small companies) who give $120
or more annually as part of <a href="/supporter/">the Official Conservancy
Supporter program</a>. Those who request public acknowledgment are listed
2015-01-04 17:34:28 +00:00
here in lexicographical order by surname:</p>
<ul id="supporters">
<li>Anonymous ({{anonymous_count|safe}} people)</li>
{% for ss in supporters %}
<li>{{ ss.display_name|safe }}</li>
{% endfor %}
</ul>
2012-08-27 14:21:09 +00:00
{% endblock %}