From bbd858286b3562f2d50660d1e123ccad98d8dea8 Mon Sep 17 00:00:00 2001 From: Stephan Date: Tue, 6 Apr 2021 19:24:01 +0200 Subject: [PATCH] Removed alternating colors for blog posts and podcast episodes. This may just be temporary till I figured out the right colors. --- templates/blog.html | 2 +- templates/podcast.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/blog.html b/templates/blog.html index 6dd26e8f..64a0d9a8 100644 --- a/templates/blog.html +++ b/templates/blog.html @@ -24,7 +24,7 @@ {% for blog_post in this.pagination.items %} - {{ render_blog_post(blog_post, from_index=true, section_class=loop.cycle('-odd', '-even')) }} + {{ render_blog_post(blog_post, from_index=true) }} {% endfor %}
{{ render_pagination(this.pagination, true) }} diff --git a/templates/podcast.html b/templates/podcast.html index 23a1c566..2c9b443c 100644 --- a/templates/podcast.html +++ b/templates/podcast.html @@ -42,7 +42,7 @@ {% for blog_post in this.pagination.items %} - {{ render_blog_post(blog_post, from_index=true, section_class=loop.cycle('-odd', '-even')) }} + {{ render_blog_post(blog_post, from_index=true) }} {% endfor %}
{{ render_pagination(this.pagination, true) }}