Bottom region configuration
Horizontal bar below the main content area, above the footer. Sub-regions flow left-to-right: start | middle | end. Supports multiple rows for complex layouts.
Typical components: prev-next, edit-source, copy-markdown.
[site.layout.bottom]
middle = "prev-next"
# Or with multiple rows:
rows = [
{ middle = "prev-next" },
{ start = "edit-source", end = "copy-markdown" }
]
Explicit enable/disable (for use in overrides that also set sub-regions)
Components in the start sub-region (left for horizontal, top for vertical)
Components in the middle sub-region (center)
Components in the end sub-region (right for horizontal, bottom for vertical)
Multiple rows, each with their own start/middle/end sub-regions
When specified, start, middle, and end are ignored and each row is rendered separately. This enables multi-row layouts within a region.
Example (applicable to any region):
rows = [
{ middle = "prev-next" },
{ start = "edit-source", end = "copyright" }
]
This documentation was generated from layout/regions.rs by generate.rs.