diff --git a/docs/_data/jekyll_variables.yml b/docs/_data/jekyll_variables.yml index 23e55a5e..70759d41 100644 --- a/docs/_data/jekyll_variables.yml +++ b/docs/_data/jekyll_variables.yml @@ -1,3 +1,8 @@ +# Variables provided by Jekyll core +# +# name: : name of the variable +# description: : content returned by the varialble + global: - name: site description: >- @@ -133,21 +138,25 @@ page: Returns nil for the first entry. paginator: - - name: paginator.per_page - description: Number of Posts per page. - - name: paginator.posts - description: Posts available for that page. - - name: paginator.total_posts - description: Total number of Posts. - - name: paginator.total_pages - description: Total number of pages. - name: paginator.page - description: The number of the current page. + description: The number of the current page + - name: paginator.per_page + description: Number of posts per page + - name: paginator.posts + description: Posts available for the current page + - name: paginator.total_posts + description: Total number of posts + - name: paginator.total_pages + description: Total number of pages - name: paginator.previous_page - description: The number of the previous page. + description: >- + The number of the previous page, , or nil if no previous page exists - name: paginator.previous_page_path - description: The path to the previous page. + description: >- + The path to the previous page, or nil if no previous page exists - name: paginator.next_page - description: The number of the next page. + description: >- + The number of the next page, , or nil if no subsequent page exists - name: paginator.next_page_path - description: The path to the next page. + description: >- + The path to the next page, or nil if no subsequent page exists diff --git a/docs/_docs/pagination.md b/docs/_docs/pagination.md index d9554a99..e29ca317 100644 --- a/docs/_docs/pagination.md +++ b/docs/_docs/pagination.md @@ -71,74 +71,7 @@ with the first 5 posts, `blog/page2/index.html` with the next 5 posts and The pagination plugin exposes the `paginator` liquid object with the following attributes: -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription

page

current page number

per_page

number of posts per page

posts

a list of posts for the current page

total_posts

total number of posts in the site

total_pages

number of pagination pages

previous_page

-

- page number of the previous pagination page, - or nil if no previous page exists -

-

previous_page_path

-

- path of previous pagination page, - or nil if no previous page exists -

-

next_page

-

- page number of the next pagination page, - or nil if no subsequent page exists -

-

next_page_path

-

- path of next pagination page, - or nil if no subsequent page exists -

-
-
+{% include docs_variables_table.html scope=site.data.jekyll_variables.paginator %}
Pagination does not support tags or categories