{% extends 'base.html' %} {% block title %}文章列表{% endblock %} {% block content %}

文章列表

{% for post in posts %} {{ post['title'] }} {% endfor %}
{% endblock %}