<html>
<head>
<title><TMPL_VAR title></title>
<link rel="stylesheet" href="/ctpl/css/winki.css" type="text/css">
</head>
<body>
<br />
<h1><TMPL_VAR title></h1>
<div id="main">
<!-- TEMPLATE DRIVER TEST -->
Version: <b><TMPL_VERSION></b><br />
Current date and time: <TMPL_TIME Y-m-d H:i:s><br />
Current timestamp: <TMPL_TIMESTAMP><br />
<br />
<TMPL_INCLUDE inc>
<br />
Nested 'LOOP' section:<br />
<table border="0" cellpadding="3" cellspacing="1" width="100%">
<TMPL_LOOP rows>
<tr bgcolor="#<TMPL_VAR color>">
<TMPL_LOOP cols>
<TMPL_IF odd>
<td><TMPL_VAR var1></td>
<TMPL_ELSE>
<td><b><TMPL_VAR var1></b></td>
</TMPL_IF>
</TMPL_LOOP>
</tr>
</TMPL_LOOP>
</table>
</div>
<span id="copy">© Gregory A. Rozanoff, 2004.</span>
</body>
</html> |