blob: fad93ebb8b5b6677b5a96f9957a6b865abe9bbe4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en">
<head>
<title>STE Template Engine</title>
<style type="text/css" media="screen">
code, code pre {
font-family: monospace;
background: #eee;
}
* {
font-family: sans-serif;
}
table {
border-collapse: collapse;
}
table td, table th {
border: thin solid #ccc;
padding: 1mm;
margin: 0mm;
}
table th {
font-weight: bold;
background: #eee;
}
</style>
</head>
<body>
<h1>STE Template Engine</h1>
<p>This documentation is splitted in two parts:</p>
<ol>
<li><a href="language_definition.html">The definition of the STE template language</a>, including the documentation of the <a href="language_definition.html#builtin">builtin tags</a> and the <a href="language_definition.html#stdlib">standard library</a></li>
<li><a href="phpdoc/index.html">The documentation of the PHP implementation</a></li>
</ol>
<p>It could also be helpful to take a look at the example program (the "example" directory).</p>
</body>
</html>
|