definition:
|
mainPage :: (String,[BaseHtml]) -> String -> [BaseHtml] -> [[BaseHtml]]
-> [[BaseHtml]] -> [BaseHtml] -> [BaseHtml] -> IO String
mainPage homeref title htmltitle lefttopmenu righttopmenu sidemenu maindoc = do
time <- getLocalTime
return $ showHtmlPage $
bootstrapPage favIcon cssIncludes jsIncludes title homeref
lefttopmenu righttopmenu 3 sidemenu htmltitle maindoc
(curryDocFooter time)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Generate the main page with the default documentation style.
--- @param title - the title of the page
--- @param htmltitle - the title in HTML format (shown as h1)
--- @param lefttopmenu - the menu shown at left of the top
--- @param righttopmenu - the menu shown at right of the top
--- @param sidemenu - the menu shown at the left-hand side
--- @param maindoc - the main contents of the page
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_,_,_,_) |-> _}
|
name:
|
mainPage
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(String, [HTML.Base.BaseHtml]) -> String -> [HTML.Base.BaseHtml]
-> [[HTML.Base.BaseHtml]] -> [[HTML.Base.BaseHtml]] -> [HTML.Base.BaseHtml]
-> [HTML.Base.BaseHtml] -> Prelude.IO String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|