Files @ 21ee13ee7ecc
Branch filter:

Location: website/www/conservancy/templates/news/pressrelease_archive_year.html

Bradley M. Kuhn
Supporter: pictures: get picture-small working & apply throughout.

I pulled this from the `blog-left` style I used to use in blog posts
and created a new style called picture-small. On smaller screen
real estate, Tony's picture was ultimately too big.
{% extends "base_news.html" %}

{% block title %}Conservancy News Index - {{ year|date:"Y" }}{% endblock %}

{% block content %}

         <div id="mainContent">
<h2>Conservancy News Index - {{ year|date:"Y" }}</h2>

{% for pressr in object_list %}
  {% include "news/pressrelease_partial.html" with pressr=pressr show="dateline" only %}
{% endfor %}

         </div>
{% endblock %}