diff options
author | Kevin Chabowski <kevin@kch42.de> | 2012-01-15 13:04:03 +0100 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2012-01-15 13:04:03 +0100 |
commit | 8e35fad33de1fbecea7c29776f7afab6a4b88a48 (patch) | |
tree | 45140f6f610cc0481e5c6b0bc0eb932578bad972 /example/templates/src/articles.html | |
parent | 7807fca367008ceaa8ff1b5a1b7f040520ee1cad (diff) | |
download | ste-8e35fad33de1fbecea7c29776f7afab6a4b88a48.tar.gz ste-8e35fad33de1fbecea7c29776f7afab6a4b88a48.tar.bz2 ste-8e35fad33de1fbecea7c29776f7afab6a4b88a48.zip |
Added builtin ste:get and fixed a code generation bug.
* ste:get allows us to get a variable's content dynamically.
* (') was escaped for TextNodes, which resulted to:
\'
should have been:
'
Diffstat (limited to 'example/templates/src/articles.html')
-rw-r--r-- | example/templates/src/articles.html | 3 |
1 files changed, 3 insertions, 0 deletions
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> |