#' tab_schedule UI Function
#'
#' @description A shiny Module.
#'
#' @param id,input,output,session Internal parameters for {shiny}.
#'
#' @noRd
#'
#' @importFrom shiny NS tagList
mod_tab_schedule_ui <- function(id){
ns <- NS(id)
tagList(
tags$div(class = "landing-block foreground-content",
tags$div(class = "foreground-text",
tags$br(style = "line-height: 80px"),
tags$p("Mairie", style = "font-family: \'Bauer Bodoni Std 1\'; font-size: 30px; letter-spacing:5px; text-align: center"),
tags$p("10 heures", style = "font-family: \'MrsEavesItalic\'; letter-spacing:3px; text-align: center"),
tags$p("Maison pour tous | Chateaubourg", style = "font-family: \'MrsEavesItalic\'; letter-spacing:3px; text-align: center"),
tags$p("En petit comit\u00e9 | Seuls les t\u00e9moins, grands-parents, parents, fr\u00e8res & soeurs sont convi\u00e9s", style = "font-family: \'MrsEavesItalic\'; letter-spacing:3px; text-align: center"),
tags$br(style = "line-height: 80px"),
tags$p("C\u00e9r\u00e9monie la\u00efque", style = "font-family: \'Bauer Bodoni Std 1\'; font-size: 30px; letter-spacing:5px; text-align: center"),
tags$p("15 heures", style = "font-family: \'MrsEavesItalic\'; letter-spacing:3px; text-align: center"),
tags$p("Manoir de Belle-No\u00eb - Dol-de-Bretagne", style = "font-family: \'MrsEavesItalic\'; letter-spacing:3px; text-align: center"),
tags$br(style = "line-height: 80px"),
tags$p("Vin d\'honneur", style = "font-family: \'Bauer Bodoni Std 1\'; font-size: 30px; letter-spacing:5px; text-align: center"),
tags$p("17 heures", style = "font-family: \'MrsEavesItalic\'; letter-spacing:3px; text-align: center"),
tags$p("Manoir de Belle-No\u00eb | Dol-de-Bretagne", style = "font-family: \'MrsEavesItalic\'; letter-spacing:3px; text-align: center"),
tags$br(style = "line-height: 80px"),
tags$p("D\u00eener", style = "font-family: \'Bauer Bodoni Std 1\'; font-size: 30px; letter-spacing:5px; text-align: center"),
tags$p("19 heures 30", style = "font-family: \'MrsEavesItalic\'; letter-spacing:3px; text-align: center"),
tags$p("Manoir de Belle-No\u00eb | Dol-de-Bretagne", style = "font-family: \'MrsEavesItalic\'; letter-spacing:3px; text-align: center"),
tags$br(style = "line-height: 80px"),
tags$p("Soir\u00e9e dansante", style = "font-family: \'Bauer Bodoni Std 1\'; font-size: 30px; letter-spacing:5px; text-align: center"),
tags$p("23 heures 30", style = "font-family: \'MrsEavesItalic\'; letter-spacing:3px; text-align: center"),
tags$p("Manoir de Belle-No\u00eb | Dol-de-Bretagne", style = "font-family: \'MrsEavesItalic\'; letter-spacing:3px; text-align: center"),
tags$br(style = "line-height: 80px"),
tags$p("Retour", style = "font-family: \'Bauer Bodoni Std 1\'; font-size: 30px; letter-spacing:5px; text-align: center"),
tags$p("12 heures 30 le lendemain", style = "font-family: \'MrsEavesItalic\'; letter-spacing:3px; text-align: center"),
tags$p("Manoir de Belle-No\u00eb | Dol-de-Bretagne", style = "font-family: \'MrsEavesItalic\'; letter-spacing:3px; text-align: center")
)
)
)
}
#' tab_schedule Server Functions
#'
#' @noRd
mod_tab_schedule_server <- function(id, r_global){
moduleServer( id, function(input, output, session){
ns <- session$ns
})
}
## To be copied in the UI
# mod_tab_schedule_ui("tab_schedule_ui_1")
## To be copied in the server
# mod_tab_schedule_server("tab_schedule_ui_1")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.