Add subtitle
any element.
A valid CSS
class.
html tag.
target to set an html anchor.
if(interactive()){
shinyApp(
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) {}
)
}