RAM-CMS Page Format
===================

The format of RAM-CMS pages is very simple.

An example static page:
START
This is My Page Title
This is My Page Header
This is what the user will see in the body of the page.
<br><br>
Any HTML tags that are valid between HTML BODY tags are valid here.
EOF
(START and EOF are used to mark the start and end of the example. Do not put 
START and EOF inside actual site pages.)
The first line is the page title - it should be inserted between the <title> 
tags in the generated page.
The second line is the page header. It should be inserted in a prominent place 
in the generated page. The second line may be left blank, in which case the 
first line will be used as the page header. This feature prevents duplication, 
since in many instances the page title and page header are identical. The 
second line must be left totally blank for this to work, so extra whitespace or 
the like are not allowed (you can add a space to make the page header appear 
blank, but this isn't suggested). Everything from line 3 down should be inserted 
in the body (main content area) of the page.

The reason I say "should" instead of "will" is that exact insertion points 
are configured inside the theme file, - see CONFIG.TXT and THEMES.TXT and the 
files in the themes directory for more on this.
