有这么好的 CMS 怎么不早点告诉我!
“一千万以内最好的”是商标名称(滑稽)
我的博客站点采用的是 Jekyll 加 Github Pages 的方案,需要管理文章的时候 VScode 通常是必不可少,但是又有些小题大做,而且手机上操作也不方便,我就在想能不能使用一个支持 Github 账号授权的网站来管理 Jekyll 站点仓库?
不不不不不重复造轮子无疑是愚蠢的,于是我发现了 Pages CMS。
配置过程我这里不再赘述,把你写文章的 Front Matter 扔给 Deepseek就好了。
整体体验下来还是挺舒服的,没什么大毛病,写文章完全够用。目前来说有两个疼点:
- 不支持外接图床(我用的 Cloudflare R2 储存筒)
- 为什么回车直接就保存了啊!
没错!非常的诡异!比如我编辑个副标题,然后习惯性按一下回车,直接就把我的文章上传了。
别的也没什么好说的,就这样吧,散会!

最后附上我的 CMS 配置参考。
content:
- name: posts
label: 文章
type: collection
path: _posts
format: yaml-frontmatter
filename:
template: "{year}-{month}-{day}-{primary}.md"
field: create
fields:
- name: title
label: 标题
type: string
required: true
- name: description
label: 描述/副标题
type: string
required: false
- name: tags
label: 标签
type: string
list: true
- name: layout
label: 布局
type: string
default: post
hidden: true
- name: body
label: 正文内容
type: rich-text
required: true