Templates Overview

Templates are built from a combination of HTML, Javascript and WebTemplate Tags. WebTemplate Tags are used to display data from the WebTemplate Database and provide the content editing features.  Pages returned from WebTemplate are built from templates.

An example Template with the WebTemplate tags in bold:

<html>
  <head></head>
  <body>
    <wt:list type="General" source="content">
      <div class="contentEntry">
        <wt:editable>
        <h2>[wt:Heading|capitalise]</h2>
        <div class="content">[wt:Content]</div>
        </wt:editable>
      </div>
    </wt:list>
  </body>
</html>