Table of Contents
Introduction
Templates
Navigation
SiteBuilder Tags
Examples
References
|
Attributes
- tag=name
-
The name of the tag.
Example
source code
|
<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>
|
 |
|
result
|
The title is Hello World.
The document is a HTML document.
|
|
|