diff options
author | Francesco <tomaselli.fr@gmail.com> | 2025-01-01 18:03:30 +0100 |
---|---|---|
committer | Francesco <tomaselli.fr@gmail.com> | 2025-01-01 18:03:30 +0100 |
commit | eb82ffe7f2b92cab3bc632229c6f8bae70d33ff0 (patch) | |
tree | 4c07acd900c6f84cc1377503dadbb27d9184564c /wiki/features/collections.md | |
parent | b6554e22005f1c8460bb60e6894503e06f232551 (diff) |
Add wiki source
Diffstat (limited to 'wiki/features/collections.md')
-rw-r--r-- | wiki/features/collections.md | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/wiki/features/collections.md b/wiki/features/collections.md new file mode 100644 index 0000000..afc6394 --- /dev/null +++ b/wiki/features/collections.md @@ -0,0 +1,40 @@ +--- +title: "Collections" +date: "2024-10-10" +summary: "Collections parameters" +description: "Collections parameters" +toc: false +readTime: false +autonumber: true +math: false +showTags: false +--- + +Here are some parameters regarding collections, those apply to both the home displayed one and to the dedicated folder pages. + +## Pagination + +Specify the maximum number of posts per page. + +```toml +[params] +paginationSize = 100 +``` + +## Date Format + +The date format can be tweaked with a format string. + +```toml +[params] +listDateFormat = '2 Jan 2006' +``` + +## Summary Toggle + +Summaries can be turned on and off with this setting. + +```toml +[params] +listSummaries = true +``` |