| gov_layout | R Documentation |
This function loads the page layout, This doesn't work as well as
the gov_main_layout and associated functions. This is being kept for now
as a simpler version where grids are not needed.
gov_layout(..., inputID = "main", size = "full")
... |
include the components of the UI that you want within the main page. |
inputID |
ID of the main div. Defaults to "main" |
size |
Layout of the page. Optional are full, one-half, two-thirds, one-third and one-quarter. Defaults to "full" |
a HTML shiny layout div
Other Govstyle page structure:
banner(),
cookieBanner(),
footer(),
header(),
layouts,
skip_to_main()
ui <- shiny::fluidPage(
shinyGovstyle::header(
org_name = "Example",
service_name = "User Examples",
logo="shinyGovstyle/images/moj_logo.png"
),
shinyGovstyle::gov_layout(
size = "full",
shinyGovstyle::panel_output(
inputId = "panel1",
main_text = "Application Complete",
sub_text = paste(
"Thank you for submitting your application.",
"Your reference is xvsiq"
)
),
shinyGovstyle::footer(full = TRUE)
)
)
server <- function(input, output, session) {}
if (interactive()) shinyApp(ui = ui, server = server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.