almondPage | R Documentation |
Create a Shiny UI page that loads the CSS for Almond.CSS, and has no content in the page body (other than what you provide).
almondPage(..., title = NULL, lang = NULL)
... |
The contents of the document body |
title |
The browser window title (defaults to the host URL of the page) |
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/alvaromontoro/almond.css>
AlmondCSS
library(shiny) library(classless) ui <- almondPage( h1("Welcome to Almond.CSS!"), 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.