View source: R/bulma-section.R
bulmaSection | R Documentation |
Add a container to divide your page into sections
bulmaSection(..., container = TRUE, size = NULL)
... |
any element. |
container |
If |
size |
change the spacing, takes |
John Coene, jcoenep@gmail.com
if(interactive()){
library(shiny)
shinyApp(
ui = bulmaPage(
bulmaSection(
size = "large",
bulmaContainer(
bulmaTitle("Section 1 title"),
bulmaSubtitle("Section 1 subtitle")
)
),
bulmaSection(
bulmaContainer(
bulmaTitle("Section 1 title"),
bulmaSubtitle("Section 1 subtitle")
)
)
),
server = function(input, output) {}
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.