mirror of
https://github.com/tomfran/typo.git
synced 2025-04-25 04:59:54 +03:00

Changes `breadcrumbs` config into an object to add customizations such as hiding current page and changing the text of the home crumb. By default, Typo will now show breadcrumbs. If breadcrumbs are enabled, the current default of showing the current page crumb is preserved. BREAKING CHANGE: `breadcrumbs` is now an object so existing `breadcrumbs = <true/false>` line in config needs to be changed.
15 lines
No EOL
258 B
TOML
15 lines
No EOL
258 B
TOML
baseURL = 'https://example.org/'
|
|
languageCode = 'en-us'
|
|
defaultContentLanguage = 'en-us'
|
|
title = 'typo'
|
|
|
|
[module]
|
|
[module.hugoVersion]
|
|
extended = false
|
|
min = "0.116.0"
|
|
|
|
# Default config
|
|
[params.breadcrumbs]
|
|
enabled = true
|
|
showCurrentPage = true
|
|
home = "Home" |