first commit

This commit is contained in:
cozis
2023-06-27 17:13:57 +02:00
commit 2b138a8764
13 changed files with 5308 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<html>
<head>
<title>{{username}}s blog!</title>
</head>
<body>
<p>Hei, welcome to my blog! I'm {{name}} {{surname}} and I'm {{age}} years old!</p>
<ul>
{% for post in posts %}
<li>{{post.title}} - {{post.date}}</li>
{% end %}
</ul>
</body>
</html>