Files @ 21ee13ee7ecc
Branch filter:

Location: website/www/conservancy/templates/news/pressrelease_archive_day.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 - {{ day|date:"F j, Y" }}{% endblock %}

{% block content %}

<h2>Conservancy News Index - {{ day|date:"F j, Y" }}</h2>

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

{% endblock %}