{% extends "base.html" %} {% block title %}Home{% endblock %} {% block body %} {{ content}} Recent Posts {% for post in posts[:5] %} {{ post.title }} {{ post.description}} Published On: {{post.date}} Tags: {% for tag in post.tags %} {{ tag }}{{ ", " if not loop.last else "" }} {% endfor %} {% endfor %} For all posts go to Posts {% endblock %}