{% extends 'base.html' %} {% block title %}文章列表{% endblock %} {% block content %} <h1>文章列表</h1> <div class='mdui-list'> {% for post in posts %} <a href="{{ url_for('post',id=post['id']) }}" class="mdui-list-item mdui-ripple">{{ post['title'] }}</a> {% endfor %} </div> {% endblock %}