Files @ 5c72071b67e3
Branch filter:

Location: website/www/conservancy/templates/supporter/banners.html

Bradley M. Kuhn
rt:261 — Gilden requires proprietary Javascript just to show sizes

The only thing of note actually available on the Gilden page that we
previously linked to are these two images (they have a kid's size
image, but we don't need that). So, link instead directly to the
images rather than the page itself. This is admittedly more fragile
as those image links seem to have some sort of checksum in them, but
it's worth it to avoid the proprietary Javascript.

Thanks very much to the Supporter who pointed this out waaay back on
Wed, 25 Apr 2018 14:59:37 -0400 in rt:261 in our internal ticketing
system! You know who you are. ☺
{% extends "base_conservancy.html" %}
{% block subtitle %}Supporter Banners - {% endblock %}
{% block category %}supporter{% endblock %}

{% block content %}
<div class="singleColumn">
<h2>Conservancy Supporter Banners</h2>

<p>Help support Conservancy even more by sharing a banner on your own page and encourage other people to join you!  We have banners for individuals and member projects below; just copy the code for the version you want into your own site.</p>

<h3>Individual Supporter Banner</h3>

<pre><code>  &lt;div style="margin: 0 auto; max-width: 1200px;"&gt;
    &lt;a href="https://sfconservancy.org/supporter"&gt;
      &lt;img style="width: 100%;"
           src="https://sfconservancy.org/img/banners/2019-individuals-banner.png"
           alt="Conservancy is a proponent for community driven free software projects.
                Will you join me in supporting them? Donate today!"&gt;
    &lt;/a&gt;
  &lt;/div&gt;
</code></pre>

<div style="margin: 0 auto; max-width: 1200px;">
  <a href="https://sfconservancy.org/supporter">
    <img style="width: 100%;"
         src="/img/banners/2019-individuals-banner.png"
         alt="Conservancy is a proponent for community driven free software projects.
              Will you join me in supporting them? Donate today!">
  </a>
</div>

<h3>Member Project Banner</h3>

<pre><code>  &lt;div style="margin: 0 auto; max-width: 1200px;"&gt;
    &lt;a href="https://sfconservancy.org/supporter"&gt;
      &lt;img style="width: 100%;"
           src="https://sfconservancy.org/img/banners/2019-member-projects-banner.png"
           alt="Conservancy helps make our work possible.
                Please donate to them today to support community-driven free software projects!"
    &lt;/a&gt;
  &lt;/div&gt;
</code></pre>

<div style="margin: 0 auto; max-width: 1200px;">
  <a href="https://sfconservancy.org/supporter">
    <img style="width: 100%;"
         src="/img/banners/2019-member-projects-banner.png"
         alt="Conservancy helps make our work possible.
              Please donate to them today to support community-driven free software projects!"
  </a>
</div>

</div>
{% endblock %}