{% extends "base.html" %} {% block title %}首页 - 个人博客{% endblock %} {% block content %}
{% if posts %} {% for post in posts %}
{% if post.thumbnail %}
{{ post.title }}
{% endif %}

{{ post.title }}

{{ post.content | safe }}
阅读全文 →
{% endfor %} {% else %}

还没有文章,快去 上传 第一篇吧!

{% endif %}
{% endblock %}