diff --git a/theme/templates/category.html b/theme/templates/category.html
index e73988ee9bce657a67b0040dc70063abe4efdc9f..0c2b6e0ff9f6a25c9462dc5910bfcccf62a7aaf7 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 c71333e130168e511d437b7f729c75211c755e1c..6a636023257c22e38fb88b74bb4d631af4718362 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 %}