Dashboards
Dashboards are the root component for a web site.
Basic Dashboards
New-UDDashboard -Title 'Dashboard' -Content {
}Dashboard with Pages
New-UDDDashboard -Title 'Pages' -Pages @(
New-UDPage -Name 'Page1' -Content {}
New-UDPage -Name 'Page2' -Content {}
)Custom Not Found Page
New-UDDDashboard -Title 'Pages' -Pages @(
New-UDPage -Name 'Page1' -Content {}
New-UDPage -Name 'Page2' -Content {}
) -PageNotFound {
New-UDTypograhy 'Not Found'
}Custom Not Authorized Page
Last updated
Was this helpful?