Files @ 9b48cc94e651
Branch filter:

Location: website/www/conservancy/templates/news/pressrelease_partial.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.
{% comment %}

This partial requires these parameters:

* `pressr`: The PressRelease object to render.

This partial accepts these optional parameters:

* `show`: How much of the PressRelease to render.  Accepted values are
  "headline", "dateline", "subhead", "summary", and "body".
  Every value will render the parts listed before it.  Default "body".
* `htag`: Name of the HTML tag to render the pressr headline.
  If you're passing show="subhead" or a greater detail level, this
  must be a headline tag h1 through h5, inclusive.  Default "h3".

{% endcomment %}

<div class="press-release">

<{{ htag|default:"h3" }} class="clear"
  >{% if show|default:"body" != "body" %}<a href="{{ pressr.get_absolute_url }}"
  >{% endif %}{{ pressr.headline|safe }}{% if show|default:"body" != "body" %}</a>{% endif %}</{{ htag|default:"h3" }}>

{% if show != "headline" %}
{% if show != "dateline" and pressr.subhead %}
  {# This filter sequence generates the "next" hN tag from htag #}
  <h{{ htag|default:"3"|last|get_digit:1|add:1 }}
     >{{ pressr.subhead|safe }}</h{{ htag|default:"3"|last|get_digit:1|add:1 }}>
{% endif %}

<p class="date">{{ pressr.pub_date|date:"F j, Y" }}</p>

{% if show != "dateline" and show != "subhead" %}
  {% if pressr.summary %}
    {{ pressr.summary|safe }}
  {% endif %}

  {% if pressr.body %}
    {% if show == "summary" %}
      <p><a class="continued" href="{{ pressr.get_absolute_url }}">Read More&hellip;</a></p>
    {% else %}
      {{ pressr.body|safe }}
    {% endif %}
  {% endif %}
{% endif %}

{% endif %}{# show != "headline" #}

</div>