{% extends "admin/base.html" %} {% block title %}文章管理 — {{ site_name }}{% endblock %} {% block sidebar %} {# current_page 由后端路由传入,无需在此设置 #} {% include "admin/partials/sidebar.html" %} {% endblock %} {% block content %}
{% if posts %}| 标题 | 状态 | 更新时间 | 操作 |
|---|---|---|---|
| {{ post.title }} | {% if post.published %} 已发布 {% else %} 草稿 {% endif %} | {{ post.updated_at }} | 编辑 |
还没有文章,写第一篇吧。