Nothing
#' homepage UI Function
#'
#' @description A shiny Module.
#'
#' @param id,input,output,session Internal parameters for {shiny}.
#'
#' @noRd
#'
#' @importFrom shiny NS tagList
mod_homepage_ui <- function(id) {
ns <- NS(id)
nav_panel(
"Home",
card(
title = "OrdinalSimR",
includeHTML(system.file("homepage.html", package = "ordinalsimr"))
)
)
}
#' homepage Server Functions
#'
#' @noRd
mod_homepage_server <- function(id) {
moduleServer(id, function(input, output, session) {
ns <- session$ns
})
}
## To be copied in the UI
# mod_homepage_ui("homepage_1")
## To be copied in the server
# mod_homepage_server("homepage_1")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.