You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Site-wide kill switch, disabled here it doesn't run at all
75
+
enabled: true
76
+
77
+
# Set to 'true' to enable pagination debugging. This can be enabled in the site config or only for individual pagination pages
78
+
debug: false
79
+
80
+
# The default document collection to paginate if nothing is specified ('posts' is default)
81
+
collection: 'posts'
82
+
83
+
# How many objects per paginated page, used to be `paginate` (default: 0, means all)
84
+
per_page: 10
85
+
86
+
# The permalink structure for the paginated pages (this can be any level deep)
87
+
permalink: '/page/:num/'# Pages are index.html inside this folder (default)
88
+
#permalink: '/page/:num.html' # Pages are simple html files
89
+
#permalink: '/page/:num' # Pages are html files, linked jekyll extensionless permalink style.
90
+
91
+
# Optional the title format for the paginated pages (supports :title for original page title, :num for pagination page number, :max for total number of pages)
92
+
title: ':title - page :num'
93
+
94
+
# Limit how many paginated pages to create (default: 0, means all)
95
+
limit: 0
96
+
97
+
# Optional, defines the field that the posts should be sorted on (omit to default to 'date')
98
+
sort_field: 'date'
99
+
100
+
# Optional, sorts the posts in reverse order (omit to default decending or sort_reverse: true)
101
+
sort_reverse: true
102
+
103
+
# Optional, the default category to use, omit or just leave this as 'posts' to get a backwards-compatible behavior (all posts)
104
+
category: 'posts'
105
+
106
+
# Optional, the default tag to use, omit to disable
107
+
tag: ''
108
+
109
+
# Optional, the default locale to use, omit to disable (depends on a field 'locale' to be specified in the posts,
110
+
# in reality this can be any value, suggested are the Microsoft locale-codes (e.g. en_US, en_GB) or simply the ISO-639 language code )
111
+
locale: ''
112
+
113
+
# Optional,omit or set both before and after to zero to disable.
114
+
# Controls how the pagination trail for the paginated pages look like.
115
+
trail:
116
+
before: 2
117
+
after: 2
118
+
119
+
# Optional, the default file extension for generated pages (e.g html, json, xml).
120
+
# Internally this is set to html by default
121
+
extension: html
122
+
123
+
# Optional, the default name of the index file for generated pages (e.g. 'index.html')
0 commit comments