From 1a1af084931f8e056e951389ca0c414401ba7b94 Mon Sep 17 00:00:00 2001 From: Christian Franke Date: Tue, 5 Apr 2016 15:56:31 -0300 Subject: Show one weeks worth of events on landing page --- scripts/calendar_plugin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts/calendar_plugin.py') diff --git a/scripts/calendar_plugin.py b/scripts/calendar_plugin.py index af7408b..c277a9f 100644 --- a/scripts/calendar_plugin.py +++ b/scripts/calendar_plugin.py @@ -31,7 +31,8 @@ class CalendarPlugin: def _get_calendar_head(self): return self.template_env.get_template('calendar_head.j2').render({ 'events': self.events, - 'class': 'calendar-head' + 'class': 'calendar-head', + 'cutoff': datetime.now() + timedelta(days=7) }).encode('utf-8') def process_content(self, page_content): -- cgit v1.2.1