1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
navbarMenu(
title = "More",
#### model code ####
tabPanel(
title = "Model Code",
source_ui("model_code.R")
),
#### notepad ####
tabPanel(
title = "Notepad",
source_ui("notepad.R")
),
#### about ####
tabPanel(
title = "About",
logo_and_name(),
div(
style = "margin-top: 75px;",
source_ui("about.R")
)
),
#### glossary ####
tabPanel(
title = "Glossary",
div(
style = "background-color: white;",
h1(style = "text-align: center;", "Glossary"),
source_ui("glossary.R"),
hr(),
stan_manual()
)
),
#### help ####
tabPanel(
title = "Help",
h1(style = "text-align: center;", "Help"),
source_ui("help.R")
)
)
|