| bulmaFooter | R Documentation | 
Add footer
bulmaFooter(..., container = TRUE, centered = TRUE)
... | 
 any element.  | 
container | 
 If   | 
centered | 
 wheter to center the text.  | 
John Coene, jcoenep@gmail.com
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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.