Files @ b36800e0784f
Branch filter:

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

bsturmfels
Apply max widths and margins to all pages.

Due to the varying types of layouts used and the short time-frame the best
option seems to set a max-width etc. around the "outercontent" block. For now
this means we can't do "full bleed" body content, but that's not currently used
anyway.
{% extends "base_news.html" %}

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

{% block content %}

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

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

{% endblock %}