新增独立内容库页面

- 创建 /library 内容库独立页面
- 支持文章列表展示、搜索、分类筛选
- 支持查看详情、编辑、删除
- 支持批量选择和批量删除
- 支持导出为 JSON 文件
- 分页显示
- 主页内容库区域改为入口链接
This commit is contained in:
2026-07-13 17:35:34 +08:00
parent 898c2407e9
commit 4d1fffccd1
6 changed files with 1016 additions and 11 deletions
+5
View File
@@ -43,6 +43,11 @@ def index():
def search_page():
return render_template('search.html')
# 内容库页面
@app.route('/library')
def library_page():
return render_template('library.html')
# API首页
@app.route('/api')
def api_index():