{% extends "base.html" %} {% block title %}首页 - 个人博客{% endblock %} {% block content %}

所有文章

{% for article in articles %}

{{ article.title }}

{% if article.summary %}
{{ article.summary }}
{% endif %}
{% endfor %}
{% endblock %}