From 7214470fb65280a7310f20e970449e8a106d6774 Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Wed, 11 Aug 2021 13:34:09 +0200 Subject: [PATCH] Use new, extended sponsors list in base template --- pelicanconf.py | 2 ++ templates/base.html | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pelicanconf.py b/pelicanconf.py index c5368d5..cd81c5d 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -1,5 +1,7 @@ from datetime import date +TODAY = date.today() + SPONSORS = [ ("SpeedPartner", "/images/sponsors/speedpartner.png", "https://www.speedpartner.de", date(2038, 12, 31)), ("Informatik aktuell", "/images/sponsors/informatik_aktuell.png", "https://www.informatik-aktuell.de/", date(2021, 12, 31)), diff --git a/templates/base.html b/templates/base.html index 3f8eff8..5ddee2d 100644 --- a/templates/base.html +++ b/templates/base.html @@ -121,8 +121,10 @@ {{ SPONSORSTEXTS[DEFAULT_LANG] }} {% endif %} </p> - {% for image, url in SPONSOR_LOGOS %} - <a href="{{ url }}"><img src="{{ image }}" href="{{ url }}" alt="{{ url }}" class="sponsorslogo" /></a> + {% for alt, image, url, before in SPONSOR_LOGOS %} + {% if before >= TODAY %} + <a href="{{ url }}"><img src="{{ image }}" href="{{ url }}" alt="{{ alt }}" title="{{ alt }}" class="sponsorslogo" /></a> + {% endif %} {% endfor %} </div> </div> -- GitLab