Show Pagination in post page
<div class="post-no-pagination">
{% set totalPostCount = blog_total_post_count(group.id) %}
{% set rec_posts = blog_recent_posts(group.id, 5000) %}
{% for rec_post in rec_posts|reverse %}
{% if content.absolute_url == rec_post.absolute_url %}
<strong class="post-count"> {{ loop.index }}</strong>
{% endif %}
{% if loop.last %}
<span class="total-count">/ {{ totalPostCount }}</span>
{% endif %}
{% endfor %}
</div>
Comments
Post a Comment