fix: add "slug" where it was forgotten (#2132)
This commit is contained in:
parent
1538a38bf0
commit
ce57d37147
|
@ -48,7 +48,7 @@ description = ""
|
||||||
# A draft section is only loaded if the `--drafts` flag is passed to `zola build`, `zola serve` or `zola check`.
|
# A draft section is only loaded if the `--drafts` flag is passed to `zola build`, `zola serve` or `zola check`.
|
||||||
draft = false
|
draft = false
|
||||||
|
|
||||||
# Used to sort pages by "date", "update_date", "title", "title_bytes", "weight", or "none". See below for more information.
|
# Used to sort pages by "date", "update_date", "title", "title_bytes", "weight", "slug" or "none". See below for more information.
|
||||||
sort_by = "none"
|
sort_by = "none"
|
||||||
|
|
||||||
# Used by the parent section to order its subsections.
|
# Used by the parent section to order its subsections.
|
||||||
|
@ -144,7 +144,7 @@ create a list of links to the posts, a simple template might look like this:
|
||||||
This would iterate over the posts in the order specified
|
This would iterate over the posts in the order specified
|
||||||
by the `sort_by` variable set in the `_index.md` page for the corresponding
|
by the `sort_by` variable set in the `_index.md` page for the corresponding
|
||||||
section. The `sort_by` variable can be given a few values: `date`, `update_date`
|
section. The `sort_by` variable can be given a few values: `date`, `update_date`
|
||||||
`title`, `title_bytes`, `weight` or `none`. If `sort_by` is not set, the pages will be
|
`title`, `title_bytes`, `weight`, `slug` or `none`. If `sort_by` is not set, the pages will be
|
||||||
sorted in the `none` order, which is not intended for sorted content.
|
sorted in the `none` order, which is not intended for sorted content.
|
||||||
|
|
||||||
Any page that is missing the data it needs to be sorted will be ignored and
|
Any page that is missing the data it needs to be sorted will be ignored and
|
||||||
|
|
Loading…
Reference in New Issue