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) }}