diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-09-30 21:12:57 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-09-30 21:12:57 +0200 |
commit | 6c04dfe2caff1e03ba5c898b591327439452f616 (patch) | |
tree | 11c6f6955de188c48015641c1ae2e63b0d0e50d6 /wwwroot | |
parent | ec7cfa85530082127703278cf1ae5167990c0f45 (diff) |
CMS functionality works just find..minimal-working-example
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'wwwroot')
-rw-r--r-- | wwwroot/index.html | 35 | ||||
-rw-r--r-- | wwwroot/index.tmpl | 1 |
2 files changed, 7 insertions, 29 deletions
diff --git a/wwwroot/index.html b/wwwroot/index.html index c0edd6c..002ea72 100644 --- a/wwwroot/index.html +++ b/wwwroot/index.html @@ -1,31 +1,8 @@ <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> +<p> +<b>blabla</b> +Test fn....: <b>{{ test_fn }}</b><br> +Test RetFN.: <b>{{ test_return_true }}</b><br> +Blog Render: <b>{{ blah }}</b><br> +</p> </body></html> diff --git a/wwwroot/index.tmpl b/wwwroot/index.tmpl new file mode 100644 index 0000000..b42f18c --- /dev/null +++ b/wwwroot/index.tmpl @@ -0,0 +1 @@ +<html><body><b>INDEX TMPL</b></body></html> |