aboutsummaryrefslogtreecommitdiffstats
path: root/ste/example/tmpl.c.ste
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov@twistea.su>2025-04-01 01:44:47 +0300
committerjustanothercatgirl <sotov@twistea.su>2025-04-01 01:44:47 +0300
commita5f1cb5ce34f31b9c46de94e55b5f85d571b792f (patch)
tree105116fd5b812124812c6658727b96814fa41b05 /ste/example/tmpl.c.ste
parent08b786a6770c172f433e28b0eb1e893f4fbae40a (diff)
Added stringbuilder and STE
Diffstat (limited to 'ste/example/tmpl.c.ste')
-rw-r--r--ste/example/tmpl.c.ste11
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>
+