{% extends "admin/base.html" %} {% block title %}文章管理 — {{ site_name }}{% endblock %} {% block sidebar %} {# current_page 由后端路由传入,无需在此设置 #} {% include "admin/partials/sidebar.html" %} {% endblock %} {% block content %}

文章管理

写新文章
{% if posts %} {% for post in posts %} {% endfor %}
标题 状态 更新时间 操作
{{ post.title }} {% if post.published %} 已发布 {% else %} 草稿 {% endif %} {{ post.updated_at }} 编辑
{% else %}

还没有文章,写第一篇吧

{% endif %} {% endblock %}