Files @ 32dd831a5056
Branch filter:

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

bsturmfels
First-pass implementation of new design for home page.

Uses a combination of CSS changes and Tachyons classes to implement the design.

Adds the non-minified Tachyons CSS library itself and SVG icons from Font Awesome.
{% 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 %}