From c0483779dac4d8fd5fcc736ae5ffa8ddede0e511 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Tue, 27 Apr 2021 15:15:40 +0200 Subject: ContentManager / Filesystem classes as preparation for a SimpleBlog. Signed-off-by: Toni Uhlig --- wwwroot/index.html | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 wwwroot/index.html (limited to 'wwwroot/index.html') 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 @@ + + Hello {{ name }}! I come from {{ city }}.
+ + Hello {{ names.1 }}!
+ + Hello {{ brother.name }}!
+ + Hello {{ brother.daughter0.name }}!
+ + {{ \"{{ no_value }}\" }}
+ + Hello{# This is a comment #}!
+ + {# --- #Todo --- #}
+ + {% for name in names %}a{% endfor %}
+ + Hello {% for name in names %}{{ name }} {% endfor %}!
+ + Hello {% for name in names %}{{ loop.index }}: {{ name }}, {% endfor %}!
+ + {% for type, name in relatives %}{{ type }}: {{ name }}, {% endfor %}
+ + {% for v in vars %}{% if v > 0 %}+{% endif %}{% endfor %}
+ + {% for name in names %}{{ loop.index }}: {{ name }}{% if not loop.is_last %}, {% endif %}{% endfor %}!
+ + {% for name in names %}{{ loop.index }}: {{ name }}{% if loop.is_last == false %}, {% endif %}{% endfor %}!
+ + {% for name in names %}a{% endfor %}
+ -- cgit v1.2.3