summaryrefslogtreecommitdiff
path: root/docu/index.html
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2011-09-21 00:15:45 +0200
committerKevin Chabowski <kevin@kch42.de>2011-09-21 00:15:45 +0200
commitfa1b95982a05ca860ada827b9fbdc9def1ac8952 (patch)
treed0b5f73b4caf57009d41f52ed9b590d79db61ec7 /docu/index.html
parent9ea6438809d1019cda096ac101904735ee2fec8e (diff)
downloadste-fa1b95982a05ca860ada827b9fbdc9def1ac8952.tar.gz
ste-fa1b95982a05ca860ada827b9fbdc9def1ac8952.tar.bz2
ste-fa1b95982a05ca860ada827b9fbdc9def1ac8952.zip
Added documentation, an example program and fixed some bugs...
Diffstat (limited to 'docu/index.html')
-rw-r--r--docu/index.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/docu/index.html b/docu/index.html
new file mode 100644
index 0000000..f1e0f86
--- /dev/null
+++ b/docu/index.html
@@ -0,0 +1,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>Stupid 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>Stupid 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/Programming 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="nd">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>