{% extends "base.html" %} {% block title %}Home{% endblock %} {% block body %} {{ content}} {% for post in posts %} {{ post.title }} {{ post.description}} Published On: {{post.date}} Tags: {% for tag in post.tags %} {{ tag }}, {% endfor %} {% endfor %} {% endblock %}