First commit

This commit is contained in:
2025-08-02 19:53:48 +02:00
commit 4d746942f0
12 changed files with 2186 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
func(1, 3, 5);
title = "My Website";
posts = [
{ name: "Post Title 1", data: "1 Jan 2025" },
{ name: "Post Title 2", data: "1 May 2024" },
];
<html>
<head>
<title>$(title);</title>
</head>
<body>
<ul>
$ for post in posts:
<li>$(post.name); - $(post.date);</li>
</ul>
$ comment(1, 3, 4);
</body>
</html>