Description Usage Arguments Author(s) Examples
An activity list
1 |
... |
Slot for activityItem |
David Granjon, dgranjon@ymail.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | if (interactive()) {
library(shiny)
library(gentelellaShiny)
shinyApp(
ui = gentelellaPageCustom(
gentelellaBody(
box(
title = "Activity List",
activityList(
lapply(X = 1:3, FUN = function(i) {
activityItem(
title = "Desmond Davison",
img = paste0("https://image.flaticon.com/icons/svg/1087/108783", i,".svg"),
day = 13,
month = "june",
url = "http://www.google.com",
"Raw denim you probably haven't heard of them jean shorts Austin.
Nesciunt tofu stumptown aliqua butcher retro keffiyeh
dreamcatcher synth."
)
})
)
)
)
),
server <- function(input, output) {}
)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.