summaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
Diffstat (limited to 'example')
-rw-r--r--example/index.php4
-rw-r--r--example/templates/src/articles.html3
2 files changed, 7 insertions, 0 deletions
diff --git a/example/index.php b/example/index.php
index 3d2b1ca..14ca576 100644
--- a/example/index.php
+++ b/example/index.php
@@ -52,6 +52,10 @@ $ste->vars["articles"] = array(
array("author" => "baz", "title" => "whatever...", "timestamp" => 1316550000, "excerpt" => "...", "full" => "..........")
);
+$ste->vars["foo"] = "baz";
+$ste->vars["bar"] = "lol";
+$ste->vars["baz"] = array("lol" => "cool");
+
# Execute the template and output the result
echo $ste->exectemplate("articles.html");
diff --git a/example/templates/src/articles.html b/example/templates/src/articles.html
index 108a3b8..0f20aeb 100644
--- a/example/templates/src/articles.html
+++ b/example/templates/src/articles.html
@@ -46,4 +46,7 @@
<ste:repeat n="10">
<p>Bla</p>
</ste:repeat>
+
+ <h3>Get a variable's content dynamically</h3>
+ <ste:get var="${foo}[$bar]" />
</ste:block>