From 6a6afd3ba2202ff1b422ef0d29e8f6d00c73cbf1 Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Sun, 31 Dec 2017 13:19:05 -0800 Subject: [PATCH] Increase number of days we keep things on front. --- www/conservancy/templates/frontpage.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/conservancy/templates/frontpage.html b/www/conservancy/templates/frontpage.html index c551108c..8d180c24 100644 --- a/www/conservancy/templates/frontpage.html +++ b/www/conservancy/templates/frontpage.html @@ -27,7 +27,7 @@

[RSS] Recent News

{% for pressr in press_releases|slice:":5" %} - {% if forloop.first or pressr.pub_date|date_within_past_days:30 %} + {% if forloop.first or pressr.pub_date|date_within_past_days:90 %} {% if not forloop.first %}
{% endif %} {% include "news/pressrelease_partial.html" with pressr=pressr show="summary" only %} {% endif %} @@ -39,7 +39,7 @@

[RSS] Conservancy Blog

{% for entry in blog|slice:":5" %} - {% if forloop.first or entry.pub_date|date_within_past_days:30 %} + {% if forloop.first or entry.pub_date|date_within_past_days:45 %} {% if not forloop.first %}
{% endif %} {% include "blog/entry_partial.html" with entry=entry show="summary" only %} {% endif %}