Files @ a8710b4b9f2a
Branch filter:

Location: website/www/conservancy/templates/sponsors.html

Denver Gingerich
Copyleft Compliance: mostly minor fixes to new pgs

These are mostly minor edits (typo fixes, etc.) to the enforcement
strategy and firmware liberation pages that were just added.

The one large change was to replace the first paragraph of the
enforcement strategy page with the full Conservancy description used
previously. The glue text used to shorten it appeared unsalvageable
and it wasn't immediately obvious how to replace it with something
better, so we used the full description instead.
{% extends "base_conservancy.html" %}
{% block subtitle %}Sponsors - {% endblock %}
{% block category %}sponsors{% endblock %}
{% block head %}
<meta charset="UTF-8"/>
{% endblock %}

{% block content %}

<h1>Conservancy's Sponsors &amp; Supporters</h1>

<p>Conservancy relies on donations from the general public to support its
work, and asks everyone <a href="/donate">to donate generously</a>.

<h2>Sponsors</h2>

<p>The sponsors whose logos are listed below (in alphabetical order) have donated
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
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>

<!-- logos should be 250x250 maximum. -->
<ul id="sponsor">
<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://www.linux.org.au/"><img src="/img/sponsors/linux-australia.png" alt="Linux Australia"></a></li>
<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>
</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> -->
<br/>
<hr/>
<br/>
<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
  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>

{% endblock %}