From 6a6afd3ba2202ff1b422ef0d29e8f6d00c73cbf1 2017-12-31 21:19:05 From: Bradley M. Kuhn Date: 2017-12-31 21:19:05 Subject: [PATCH] Increase number of days we keep things on front. --- diff --git a/www/conservancy/templates/frontpage.html b/www/conservancy/templates/frontpage.html index c551108cdeaee75bf9fc3f0b7f6532ad709df270..8d180c242c2db88d51a427148b82adc97b03e81b 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 %}