This creates a Semantic page for use in a Shiny app.
semanticPage(..., title = "", theme = NULL)Other arguments to be added as attributes of the main div tag wrapper (e.g. style, class etc.)
A title to display in the browser's title bar.
Theme name or path. Full list of supported themes you will find in
SUPPORTED_THEMES or at http://semantic-ui-forest.com/themes.
Inside, it uses two crucial options:
(1) shiny.minified with a logical value, tells whether it should attach min or full
semnatic css or js (TRUE by default).
(2) shiny.custom.semantic if this option has not NULL character semanticPage
takes dependencies from custom css and js files specified in this path
(NULL by default). Depending on shiny.minified value the folder should contain
either "min" or standard version. The folder should contain: semantic.css and
semantic.js files, or semantic.min.css and semantic.min.js
in shiny.minified = TRUE mode.