Files @ 9b48cc94e651
Branch filter:

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

Bradley M. Kuhn
Continuing saga of the sizing chart problems for original shirts

Gildan removed the sizing chart entirely from their website again
after yet another redesign. Originally, we deep-linked into files in
their CDN for the charts, but it appears that in 5c72071 that I
introduced cut-and-paste error on the sizing charts. I cannot find
the original links, but finally I simply decided we'd mirror the
files in our CDN, which is where these now link to.

I suspect that I didn't do this to start for worrying about copyright
infringement, but upon second thought, I think it's very reasonably
fair use for us to distribute these images. We bought a lot of
t-shirts from Gildan and just trying to sell through.
{% extends "base_conservancy.html" %}
{% block subtitle %}Sustainer Banners - {% endblock %}
{% block category %}sustainer{% endblock %}

{% block content %}
<div class="singleColumn">
<h2>Conservancy Sustainer 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 Sustainer Banner</h3>

<pre><code>  &lt;div style="margin: 0 auto; max-width: 1200px;"&gt;
    &lt;a href="https://sfconservancy.org/sustainer"&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/sustainer">
    <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/sustainer"&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/sustainer">
    <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 %}