I would like to run slider images html page in shiny app using index.html.
library(shiny)
library(htmltools)
ui <- bootstrapPage(
h2("Responsive Image Slider"),
htmlTemplate(filename = "index.html" , name = 'slider')
)
server<- function(input,output){
}
shinyApp(ui,server)
I have the PNG files which shown in the image.
I would like to show those images in the html output as images slider.