- Type name:
breadcrumbs
- Optional widget
- Placement types: fixed, auto
Provides “breadcrumbs” navigation bar.
Is inserted below the hero image (if exists) or below the header.
Supported values:
Value | Description | Demo |
---|---|---|
fixed-home |
Home button not scrollable (if exists) | |
scrollable-home |
Home button scrollable (if exists) | |
heading |
Breadcrumbs items shown one under the other |
Use if you want to align the widget to the edges of the content (by default it aligns to the edges of the screen).
Add a home page icon with link to the home page before the first breadcrumbs item.
If not empty - text title will be shown instead of the home page icon (works only with "AddHomePageLink": true
).
Add the current article title (without the link) after the last breadcrumbs item. Works only if the Article widget is also present in JSON config.
Separator style between breadcrumbs items.
Supported values:
Value | Result |
---|---|
small-angle-bracket |
> |
big-angle-bracket |
> |
arrow |
⮕ |
Placement name. See Fixed Placements for more information.
If undefined, the widget uses the auto placement logic.
Array of breadcrumbs items.
Please do not include the home page and the current page links in the items array. Use AddHomePageLink
and AddCurrentPageTitle
instead.
Title of breadcrumb item.
Valid Url for breadcrumb item link.
[{
"Type": "breadcrumbs",
"Id": "abcABC123",
"Design": "fixed-home",
"AlignByScreenEdges": true,
"AddHomePageLink": true,
"HomePageTitle": "Home",
"AddCurrentPageTitle": false,
"SeparatorDesign": "small-angle-bracket",
"FixedPlacement": "AboveTitle",
"Items": [
{
"Title": "Cars",
"Url": "https://yoursite.com/cars/"
},
{
"Title": "Parts",
"Url": "https://yoursite.com/cars/parts/"
}
]
}]