definition:
|
bootstrapPage :: String -> [String] -> [String] -> String -> (String,[BaseHtml])
-> [[BaseHtml]] -> [[BaseHtml]] -> Int -> [BaseHtml] -> [BaseHtml]
-> [BaseHtml] -> [BaseHtml] -> HtmlPage
bootstrapPage favicon styles jsincludes title brandurltitle lefttopmenu
righttopmenu leftcols sidemenu header contents footer =
bootstrapPage2 favicon styles jsincludes title brandurltitle
(addNavItemClass lefttopmenu) (addNavItemClass righttopmenu)
leftcols sidemenu header contents footer
where
addNavItemClass = map (\i -> ("nav-item", i))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
----------------------------------------------------------------------------
--- An HTML page rendered with bootstrap with a fixed top navigation bar.
--- @param favicon - the icon file `favicon.ico` (when empty not included)
--- @param styles - the style files to be included (typically,
--- `css/bootstrap.min.css`)
--- @param jsincludes - the JavaScript files to be included (typically,
--- `.../jquery.js`, `js/bootstrap.min.js`)
--- @param title - the title of the form
--- @param brand - the brand shown top left (a URL/title pair)
--- @lefttopmenu - the menu shown in the left side of the top navigation bar
--- @righttopmenu - the menu shown in the right side of the top navigation bar
--- (could be empty)
--- @param columns - number of columns for the left-side menu
--- (if columns==0, then the left-side menu is omitted)
--- @param sidemenu - the menu shown at the left-side of the main document
--- (maybe created with 'titledSideMenu')
--- @param header - the main header (will be rendered with jumbotron style)
--- @param contents - the main contents of the document
--- @param footer - the footer of the document
|
failfree:
|
(_, _, _, _, _, _, _, _, _, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_,_,_,_,_,_,_,_,_) |-> {HtmlPage}}
|
name:
|
bootstrapPage
|
precedence:
|
no precedence defined
|
result-values:
|
{HtmlPage}
|
signature:
|
String -> [String] -> [String] -> String -> (String, [HTML.Base.BaseHtml])
-> [[HTML.Base.BaseHtml]] -> [[HTML.Base.BaseHtml]] -> Prelude.Int
-> [HTML.Base.BaseHtml] -> [HTML.Base.BaseHtml] -> [HTML.Base.BaseHtml]
-> [HTML.Base.BaseHtml] -> HTML.Base.HtmlPage
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|