-
Notifications
You must be signed in to change notification settings - Fork 9
footerContent
andy.rothwell edited this page May 31, 2019
·
3 revisions
In order to make a site's footer able to call components such as Popovers, you can configure your footer in the site config.
Example:
footerContent: {
components: [
{
type: 'PopoverLink',
options: {
height: '92%',
customStyle: { 'color': 'white', 'border-bottom': '0px' },
components: [
{
type: 'about'
}
]
},
slots: {
shouldShowValue: false,
value: 'Help'
}
},
{
type: 'Anchor',
options: {
text: 'Feedback',
target: 'blank',
customStyle: { 'color': 'white', 'border-bottom': '0px' },
href: '//exampleurl.com'
}
}
]
},