From 80c84bc02574171b755cc1c3cb3b646c60965012 Mon Sep 17 00:00:00 2001 From: Yuri Salimovskiy Date: Fri, 19 Sep 2025 21:05:46 +0300 Subject: [PATCH] Enabled usage of {paginate:top} and {paginate:bottom} tags --- docs/templates/pagination.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/templates/pagination.md b/docs/templates/pagination.md index ed633afa5..56ab730ff 100755 --- a/docs/templates/pagination.md +++ b/docs/templates/pagination.md @@ -93,6 +93,22 @@ The opening and closing tags for pagination. This can to be used in conjunction {paginate} {/paginate} +### paginate:top + +This tag pair is used to display pagination content at the top of your entries. It is functionally identical to using `{paginate}` with the parameter `paginate="top"`, but allows you to also have different pagination content at the top and bottom of your entries. + + {paginate:top} Showing {current_page} of {total_pages} {/paginate:top} + ... + {paginate:bottom} {pagination_links} {/paginate:bottom} + +### paginate:bottom + +This tag pair is used to display pagination content at the bottom of your entries. It is functionally identical to using `{paginate}` with the parameter `paginate="bottom"`, but allows you to also have different pagination content at the top and bottom of your entries. + + {paginate:top} Showing {current_page} of {total_pages} {/paginate:top} + ... + {paginate:bottom} {pagination_links} {/paginate:bottom} + ### pagination_links This variable shows the current page you are on as well as "surrounding" pages in addition to links for next/previous pages and first/last pages.