Name

PAGE — Formatted page to be displayed to the user.

Use

This template is the core of FotoBilder's BML scheme, as it determines the final rendition of the pages that aren't managed by the user. If you have FotoBilder directly integrated into your website, this is the template you should define to create an appearance that is seamless with your site.

Arguments

TITLE
The title of the page
HEAD
Additional <head> items
BODYOPTS
Attributes to pass to the body element, typically used for JavaScript purposes.
BODY
The main content of the page.

Example

page<=
{F}<html>
  <head>
    <title>%%title%%</title>
    <link rel="stylesheet" href="/remote/stylesheet.css" type="text/css" />
    %%head%%
  </head>
  <body %%bodyopts%%>
    <h1>%%title%%</h1><hr />
    %%body%%
  </body>
</html>
<=page