Introduction
  Publishing web pages
  RXML
  Information tags
  String tags
  Variable tags
  URL tags
  If tags
  Graphics tags
  Database tags
  LDAP
  Programming tags
  SSI tags
  Image maps
  IntraSeek
  LogView
  Templates
    <tmplinsert>
    <tmpldefault>
    <tmplblock>
    <tmpldefaultparam>
    <tmplinsertblock>
    <tmplinsertall>
    <tmplinsertexcept>
    <tmplhelp>
    Examples
    Default template
  Navigation
  SiteBuilder tags
  Supports system
  Security
  Appendix
 
<tmpldefault> </> Templates

 

Defines a default value for use with the <tmplinsert> tag. In case the <tmplinsert> tag can't find a tag in the content file it will use the default value for that tag, as defined with <tmpldefault>.

 

Attributes

tag=name
The name of the tag.

 

Example


<tmpldefault tag=title>
No title.
</tmpldefault>

<tmpldefault tag=type>
HTML
</tmpldefault>

The title is <tmplinsert tag=title>.
<br>The document is a <tmplinsert tag=type> document.

...

<title>Hello World</title>
<title>Hi there</title>

The title is Hello World.
The document is a HTML document.