diff options
author | Kevin Chabowski <kevin@kch42.de> | 2015-04-14 22:37:15 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2015-04-14 22:37:15 +0200 |
commit | b52413dbb4d8333d5fe2a351780e20b04c4525a2 (patch) | |
tree | 2f539192bb1d6e330bfb5845b72a6131cf7bcdae /example/templates/src/articles.html | |
parent | 31241a2ab9c97e09ddbd4fb9e41b4e2e756d8ed4 (diff) | |
download | ste-b52413dbb4d8333d5fe2a351780e20b04c4525a2.tar.gz ste-b52413dbb4d8333d5fe2a351780e20b04c4525a2.tar.bz2 ste-b52413dbb4d8333d5fe2a351780e20b04c4525a2.zip |
Trim whitespacedevelop
Diffstat (limited to 'example/templates/src/articles.html')
-rw-r--r-- | example/templates/src/articles.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/example/templates/src/articles.html b/example/templates/src/articles.html index 36f59c4..38cab10 100644 --- a/example/templates/src/articles.html +++ b/example/templates/src/articles.html @@ -29,7 +29,7 @@ <p>There are <a href="#">more articles</a>.</p> </ste:then> </ste:if> - + <h2>Some more useless demo stuff...</h2> <h3>Counting from 10 to 0...</h3> <p>but take only the even ones and multiply by 5...</p> @@ -41,15 +41,15 @@ </ste:then> </ste:if> </ste:for> - + <h3>Repeat some text...</h3> <ste:repeat n="10"> <p>Bla</p> </ste:repeat> - + <h3>Get a variable's content dynamically</h3> <ste:get var="${foo}[$bar]" /> - + <h3>We will call ste:repeat with a non-numerical value for n here to see the handling of a RuntimeError</h3> <ste:repeat n="lol"> <p>Bla</p> |