almondPage: Create a page with Almond.CSS

View source: R/almond.R

almondPageR Documentation

Create a page with Almond.CSS

Description

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).

Usage

almondPage(..., title = NULL, lang = NULL)

Arguments

...

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 <html> tag, as in <html lang="en">. The default (NULL) results in an empty string

Source

<https://github.com/alvaromontoro/almond.css>

See Also

AlmondCSS

Examples


library(shiny)
library(classless)

ui <- almondPage(
  h1("Welcome to Almond.CSS!"),
  p("A classless CSS framework")
)

server <- function(input, output) {}

shinyApp(ui, server)


ashbaldry/classless documentation built on June 2, 2022, 12:55 a.m.