clean up of files and fixed docs

This commit is contained in:
cozis
2023-06-29 19:38:44 +02:00
parent 2b138a8764
commit 56927aba1f
16 changed files with 161 additions and 1328 deletions
+18
View File
@@ -0,0 +1,18 @@
<html>
<head>
<title>TinyTemplate example</title>
</head>
<body>
<a>Hello, my name is {{name}} and my favourite fruits are:</a>
<ul>
{% for fruit in fruits %}
<li>{{fruit}}</li>
{% end %}
</ul>
{% if chocolate %}
<a>but I also like chocolate!</a>
{% else %}
<a>and I do NOT like chocolate!</a>
{% end %}
</body>
</html>