<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5HGSQD2L" height="0" width="0" style="display:none;visibility:hidden" title="GTM"></iframe>

Page Wrappers

Used to define the page structure and ensure consistent behavior across the site.

See Page Layout for guidance on using Page Wrappers with other layout components.

Default

SiteContent should be the highest item in the DOM tree, which should contain a SkipLink, SiteMain, and MainContentStart.

For pages that render the Header through Bookends, the SkipLink is already provided in the Header.

SiteMain renders a main element, which should represent the dominant content of the body of a document. MainContentStart provides a target for SkipLink, which is often placed above the first element within MainContentStart.

BoundedContent can then be placed within the SiteMain.

The preview has been updated.

Ubik

For Ubik-powered pages, the template should handle rendering a SiteMain, with individual fragments using BoundedContent as appropriate.

In a future release, SWAN will remove styling from Page Wrapper components to better support multiple SWAN versions on one page.

Props

SkipLink
This component is implemented using the <a /> as the root element. You can utilize the native attributes supported by <a /> tag. The ref is directly assigned to the root element, allowing you to access and manipulate it as needed.
See core props for additional props that can be applied to this component.
MainContentStart
This component is implemented using the <span /> as the root element. You can utilize the native attributes supported by <span /> tag. The ref is directly assigned to the root element, allowing you to access and manipulate it as needed.
See core props for additional props that can be applied to this component.
SiteContent
This component is implemented using the <div /> as the root element. You can utilize the native attributes supported by <div /> tag. The ref is directly assigned to the root element, allowing you to access and manipulate it as needed.
See core props for additional props that can be applied to this component.
SiteMain
This component is implemented using the <main /> as the root element. You can utilize the native attributes supported by <main /> tag. The ref is directly assigned to the root element, allowing you to access and manipulate it as needed.
See core props for additional props that can be applied to this component.