sakuraPage | R Documentation |
Create a Shiny UI page that loads the CSS for Sakura, and has no content in the page body (other than what you provide).
sakuraPage(..., title = NULL, theme = NULL, lang = NULL)
... |
The contents of the document body |
title |
The browser window title (defaults to the host URL of the page) |
theme |
One of the following:
|
lang |
ISO 639-1 language code for the HTML page, such as "en" or "ko".
This will be used as the lang in the |
<https://github.com/oxalorg/sakura>
library(shiny) library(classless) ui <- sakuraPage( h1("Welcome to Sakura!"), p("A classless CSS framework") ) 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.