{% extends "base.html" %} {% block title %} blog list {% endblock %} {% block content %}
{% for blog in blogs %}

{{ blog.caption }}

{{ blog.content}}
{% endfor %}
{% endblock %}