summaryrefslogtreecommitdiff
path: root/example/templates/src/articles.html
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2020-09-13 22:11:45 +0200
committerLaria Carolin Chabowski <laria@laria.me>2020-09-13 22:11:45 +0200
commit9652dcb0a5f4e7667a32205c69aeba509790a61c (patch)
treeba7cb2563c671efdd66eb330c6a69737a7909f10 /example/templates/src/articles.html
parent11932a471b4ef10faf76b6fcfe30a35f946eb7ab (diff)
downloadste-9652dcb0a5f4e7667a32205c69aeba509790a61c.tar.gz
ste-9652dcb0a5f4e7667a32205c69aeba509790a61c.tar.bz2
ste-9652dcb0a5f4e7667a32205c69aeba509790a61c.zip
Get rid of master/slave terminology
It's both offensive and kinda inaccurate in this context, so let's replace it!
Diffstat (limited to 'example/templates/src/articles.html')
-rw-r--r--example/templates/src/articles.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/example/templates/src/articles.html b/example/templates/src/articles.html
index 36f59c4..270eb00 100644
--- a/example/templates/src/articles.html
+++ b/example/templates/src/articles.html
@@ -1,5 +1,5 @@
<ste:load name="custom_tags.tpl" />
-<ste:load name="master.html" />
+<ste:load name="base.html" />
<ste:comment>Lets overwrite the content section</ste:comment>
<ste:block name="content">
<h2>Some Articles</h2>
@@ -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>