twocolumns <- function(
heading = NULL,
left,
right,
...
){
fluidRow(
column(width = 4,
if (!is.null(heading)){tags$h3(heading)}else{NULL},
tags$div(class = "bodysmall", left)
),
column(width = 8,
right
),
class = "my-3",
...
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.