Skip to content
Snippets Groups Projects
Verified Commit 6284834e authored by Jake's avatar Jake :speech_balloon:
Browse files

no limit in rendering tags or categories

parent 6d9c4c6c
No related branches found
No related tags found
No related merge requests found
Pipeline #312568 passed
...@@ -2,6 +2,6 @@ ...@@ -2,6 +2,6 @@
{% block title %}{{ l[lang].title_prefix }}{{ l[lang].sitename }}{{ l[lang].title_suffix }} - {{ category }}{%endblock%} {% block title %}{{ l[lang].title_prefix }}{{ l[lang].sitename }}{{ l[lang].title_suffix }} - {{ category }}{%endblock%}
{% block content %} {% block content %}
<section> <section>
{{ render.section({"type": "category", "category": category.slug, "num": 5000 }) }} {{ render.section({"type": "category", "category": category.slug, "num": None}) }}
</section> </section>
{% endblock content %} {% endblock content %}
...@@ -2,6 +2,6 @@ ...@@ -2,6 +2,6 @@
{% block title %}{{ l[lang].title_prefix }}{{ l[lang].sitename }}{{ l[lang].title_suffix }} - {{ tag }}{%endblock%} {% block title %}{{ l[lang].title_prefix }}{{ l[lang].sitename }}{{ l[lang].title_suffix }} - {{ tag }}{%endblock%}
{% block content %} {% block content %}
<section> <section>
{{ render.section({"type": "tag", "tag": tag.slug, "num": 5000 }) }} {{ render.section({"type": "tag", "tag": tag.slug, "num": None}) }}
</section> </section>
{% endblock content %} {% endblock content %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment