$html_template
$html_template : string
The root HTML template that all pages are built from.
Renders the HTML page that is sent to the client.
render(string $title, string $content, boolean $body_template = false) : string
Renders a HTML page with the content specified.
string | $title | The title of the page. |
string | $content | The (HTML) content of the page. |
boolean | $body_template | The HTML content template to use. |
The rendered HTML, ready to send to the client :-)
render_navigation_bar(array $nav_links, array $nav_links_extra, string $class = "")
Renders a navigation bar from an array of links. See $settings->nav_links for format information.
array | $nav_links | The links to add to the navigation bar. |
array | $nav_links_extra | The extra nav links to add to the "More..." menu. |
string | $class | The class(es) to assign to the rendered navigation bar. |