The goal of shiny386 is to provide an old school Bootstrap 4 template for Shiny. It is built on top of the Bootstrap 386 HTML template.

Installation

You can install the released version of shiny386 from Github with:

remotes::install_github("RinteRface/shiny386")

Demo

The original app may be found here

Example

This is a basic example which shows you how to solve a common problem:

library(shiny)
library(shiny386)
ui <- page_386(
 card_386(
  title = "My card",
  "This is my card",
  br(),
  card_link_386(href = "https://www.google.com", "More"),
  footer = "Card footer"
 )
)

server <- function(input, output, session) {}
shinyApp(ui, server)