diff options
Diffstat (limited to 'ste/example/tmpl.c.ste')
-rw-r--r-- | ste/example/tmpl.c.ste | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ste/example/tmpl.c.ste b/ste/example/tmpl.c.ste new file mode 100644 index 0000000..7f486cd --- /dev/null +++ b/ste/example/tmpl.c.ste @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> + <body> + % + for (int i = 0; i < 10; ++i) { + %<p>This is paragraph number % INTEGER(i) %</p>% + } + % + </body> +</html> + |