{% extends "base.html" %} {% block title %}首页 - 个人博客{% endblock %} {% block content %}
+ 添加文章 {% if logged_in %} 登出 {% else %} 登录 {% endif %}
{% if posts %} {% for post in posts %}
{% if post.thumbnail %}
{{ post.title }}
{% endif %}

{{ post.title }}

{{ post.content | safe }}
阅读全文 →
{% if not loop.last %}
{% endif %} {% endfor %} {% else %}

还没有文章,快去 编辑 第一篇吧!

{% endif %}
{% endblock %}