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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
div(
style = "text-align: center; margin-top: 100px;",
shinystan_version(),
br(),br(),
a(
style = "font-size: 16px;",
strong("Stan Development Team"),
href = "http://mc-stan.org/team/"
),
br(),
a(
style = "font-size: 14px;",
"mc-stan.org",
href = "http://mc-stan.org/"
),
div(
actionLink(
inputId = "shinystan_citation_show",
label = "Show Citation",
style = "font-size: 12px;",
class = "aoptions"
),
div(shinyjs::hidden(
wellPanel(
id = "citation_div",
style = "text-align: left;",
includeHTML("html/citation.html")
)
))
),
br(),br(),
h6("Author"),
helpText(style = "font-size: 12px;", "Jonah Gabry"),
br(),
h6(style = "font-size: 12px;", "Contributors"),
helpText(style = "font-size: 12px;", includeHTML("html/contribs.html")),
br(),
h6("Logo"),
helpText(
style = "font-size: 12px;",
a(
href = "http://mc-stan.org/team/",
"Michael Betancourt"
)
),
br(),
h6("Shiny"),
helpText(
style = "font-size: 12px;",
"ShinyStan is powered by the",
a(
href = "http://shiny.rstudio.com",
"Shiny web application framework"
),
"(RStudio)"
),
br(),
h6("Source code"),
a(
style = "color: #190201;",
href = "http://github.com/stan-dev/shinystan",
target = "_blank",
tags$i(class = "fa fa-github fa-3x")
)
)
|