100-Days-Of-Code/Visual Studio Code Projects/Day-57/templates/blog.html
2024-12-11 19:13:48 +05:30

15 lines
318 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Blog</title>
</head>
<body>
{% for blog_post in posts: %}
{% if blog_post["id"] == 2: %}
<h1>{{ blog_post["title"] }}</h1>
<h2>{{ blog_post["subtitle"] }}</h2>
{% endif %}
{% endfor %}
</body>
</html>