Add footer

bulmaFooter(..., container = TRUE, centered = TRUE)

Arguments

...

any element.

container

If TRUE wraps a bulmaContainer as a children of the section.

centered

wheter to center the text.

Author

John Coene, jcoenep@gmail.com

Examples

if(interactive()){
library(shiny)

ui <- bulmaPage(
  bulmaHero(
    fullheight = TRUE,
    color = "primary",
    bulmaHeroHead(
      bulmaContainer(
        bulmaTitle("Hero Title")
      )
    ),
    bulmaHeroHead(
      bulmaContainer(
        bulmaSubtitle(
          "Some content"
        )
      )
    ),
    bulmaHeroFoot(
      bulmaContainer(
        "The footer"
      )
    )
  )
)

server <- function(input, output){}

shinyApp(ui, server)
}