From 6284834e6cfd36b48fb2855f167cde5719c7ba69 Mon Sep 17 00:00:00 2001 From: Jake <j.vondoemming@stud.uni-goettingen.de> Date: Tue, 2 Aug 2022 00:44:53 +0200 Subject: [PATCH] no limit in rendering tags or categories --- theme/templates/category.html | 2 +- theme/templates/tag.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/templates/category.html b/theme/templates/category.html index e73988e..0c2b6e0 100644 --- a/theme/templates/category.html +++ b/theme/templates/category.html @@ -2,6 +2,6 @@ {% block title %}{{ l[lang].title_prefix }}{{ l[lang].sitename }}{{ l[lang].title_suffix }} - {{ category }}{%endblock%} {% block content %} <section> - {{ render.section({"type": "category", "category": category.slug, "num": 5000 }) }} + {{ render.section({"type": "category", "category": category.slug, "num": None}) }} </section> {% endblock content %} diff --git a/theme/templates/tag.html b/theme/templates/tag.html index c71333e..6a63602 100644 --- a/theme/templates/tag.html +++ b/theme/templates/tag.html @@ -2,6 +2,6 @@ {% block title %}{{ l[lang].title_prefix }}{{ l[lang].sitename }}{{ l[lang].title_suffix }} - {{ tag }}{%endblock%} {% block content %} <section> - {{ render.section({"type": "tag", "tag": tag.slug, "num": 5000 }) }} + {{ render.section({"type": "tag", "tag": tag.slug, "num": None}) }} </section> {% endblock content %} -- GitLab