Module Os_page
exception Predicate_failed of exn optiontype contentAn abstract type describing the content of a page
val content :
?html_a:Html_types.html_attrib Eliom_content.Html.attrib list ->
?a:Html_types.body_attrib Eliom_content.Html.attrib list ->
?title:string ->
?head:[< Html_types.head_content_fun ] Eliom_content.Html.elt list ->
[< Html_types.body_content ] Eliom_content.Html.elt list ->
contentSpecifies a page with an optional title (with the argument ?title), some optional extra metadata (with the argument ?head) and a given body.
?html_a (resp. ?a) allows to set attributes to the html (resp. body) tag.
module type PAGE = sig ... endThe signature of the module to be given as parameter to the functor. It allows to personnalize your pages (CSS, JS, etc).
module Default_config : PAGEA default configuration for pages.