Help


Template Builder


The Document Template use these variables:
$title - Title of Document
$subtitle - SubTitle of Document
$menu - Menu of Document
$body - Body of Document
$footer - Footer of Document


One simple example:

<html>
<head>
<title>$title</title>
</head>
<body>
<center><h1>$title</h1></center>
<table width="100%">
 <tr>
   <td valign="top" width="20%" >
     $menu
   </td>
   <td width="80%">
     <table>
       <tr>
         <td>
           <font size="+3" color="#000000">$subtitle</font>
         </td>
       </tr>
       <tr>
         <td>
           <font color="#000000">$body</body>
         </td>
       </tr>
       <tr>
         <td>
           <font size="-1" color="#000000">$footer</font>
         </td>
       </tr>
     </table>
   </td>
 </tr>
</table>
</body>
</html>


The Menu Template use these variables:
$title - Title of Menu
$auto - Automatic Body of Menu
$body - Body of Menu


One simple example:

<table width="100%" bgcolor="#FFFFAA">
  <tr>
    <th>
      $title
    </th>
  </tr>
  <tr>
    <td>
      $auto$body
    </td>
  </tr>
</table>