Learn R Programming

gentelellaShiny (version 0.1.0)

timeline: A timeline block

Description

A timeline block

Usage

timeline(...)

Arguments

...

slot for timelineItem

Examples

Run this code
# NOT RUN {
if (interactive()) {
 library(shiny)
 library(gentelellaShiny)
 shinyApp(
  ui = gentelellaPageCustom(
   gentelellaBody(
    box(
     width = 4,
     title = "Timeline",
     timeline(
      timelineItem(
       title = "Who Needs Sundance When You<U+2019>ve Got Crowdfunding?",
       url = NULL,
       date = "13 hours ago",
       author = "Jane Smith",
       "Film festivals used to be do-or-die moments for movie makers.
       They were where you met the producers that could fund your
       project, and if the buyers liked your flick, they<U+2019>d pay to
       Fast-forward and ..."
      ),
      timelineItem(
       title = "Who needs Money",
       url = "http:://www.google.com",
       date = "Today",
       author = "John Doe",
       "Nobody need money!",
       tag = "My tag"
      )
     )
    )
   )
  ),
  server = function(input, output, session) {}
 )
}

# }

Run the code above in your browser using DataLab