diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-04-27 15:15:40 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-04-27 15:15:40 +0200 |
commit | c0483779dac4d8fd5fcc736ae5ffa8ddede0e511 (patch) | |
tree | 42408069a518e15eb1052cc62a09d6855517cf5b /wwwroot | |
parent | 51d779256c74cc541da306db5629ed510df5a944 (diff) |
ContentManager / Filesystem classes as preparation for a SimpleBlog.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'wwwroot')
-rw-r--r-- | wwwroot/index.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/wwwroot/index.html b/wwwroot/index.html new file mode 100644 index 0000000..c0edd6c --- /dev/null +++ b/wwwroot/index.html @@ -0,0 +1,31 @@ +<html><body> + Hello {{ name }}! I come from {{ city }}.<br> + + Hello {{ names.1 }}!<br> + + Hello {{ brother.name }}!<br> + + Hello {{ brother.daughter0.name }}!<br> + + {{ \"{{ no_value }}\" }}<br> + + Hello{# This is a comment #}!<br> + + {# --- #Todo --- #}<br> + + {% for name in names %}a{% endfor %}<br> + + Hello {% for name in names %}{{ name }} {% endfor %}!<br> + + Hello {% for name in names %}{{ loop.index }}: {{ name }}, {% endfor %}!<br> + + {% for type, name in relatives %}{{ type }}: {{ name }}, {% endfor %}<br> + + {% for v in vars %}{% if v > 0 %}+{% endif %}{% endfor %}<br> + + {% for name in names %}{{ loop.index }}: {{ name }}{% if not loop.is_last %}, {% endif %}{% endfor %}!<br> + + {% for name in names %}{{ loop.index }}: {{ name }}{% if loop.is_last == false %}, {% endif %}{% endfor %}!<br> + + {% for name in names %}a{% endfor %}<br> +</body></html> |