Login   Register  
PHP Classes
elePHPant
Icontem

File: template.htm

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Zubov Ilya  >  Solace FastTemplate  >  template.htm  >  Download  
File: template.htm
Role: Auxiliary data
Content type: text/plain
Description: Template file
Class: Solace FastTemplate
Remake of the FastTemplate engine
Author: By
Last change:
Date: 2004-07-06 00:22
Size: 718 bytes
 

Contents

Class file image Download
<html>
<body>

<!-- BEGIN ENABLED BLOCK: aa -->
This string is enabled by default<br>
<!-- END ENABLED BLOCK: aa -->

<!-- BEGIN DISABLED BLOCK: bb -->
This string is disabled by default, but was enabled manually<br>
<!-- END DISABLED BLOCK: bb -->

<!-- BEGIN ENABLED BLOCK: cc -->
This string is enabled by default, but was disabled manually.
You must not see it!<br>
<!-- END ENABLED BLOCK: cc -->

And some dynamic parsing:<br>
<table width=100% border=1>
    <!-- BEGIN DYNAMIC BLOCK: rows -->
    <tr>
        <!-- BEGIN DYNAMIC BLOCK: cols -->
        <td>{VAR1}</td>
        <!-- END DYNAMIC BLOCK: cols -->
    </tr>
    <!-- END DYNAMIC BLOCK: rows -->
</table>

</body>
</html>