content/posts/ CLAUDE.md 文章 Front Matter 格式 使用 TOML 格式(+++ 分隔),不要用 YAML(---)格式。项目中大部分文章已统一为 TOML。 +++ date = '2026-04-20T10:00:00+08:00' draft = false title = '文章标题' tags = ['标签1', '标签2'] categories = ['分类名'] hidden = true # 可选,私密文章 +++ 字段说明 字段 必填 说明 date 是 ISO 8601 格式,带时区 +08:00。影响文章排序 draft 是 true=草稿(仅 hugo serve -D 可见),false=正式发布 title 是 文章标题,会显示在列表页和 <title> tags 是 标签数组,用于 /tags/ 页面聚合 categories 是 分类数组,用于 /categories/ 页面聚合 hidden 否 true 时文章被隐藏,需在导航栏输入密码(hugo.toml 中 secretPassword)后才能查看 已有的分类/标签约定 categories(选一个): 图形渲染 性能优化 博客 tags(按需选多个): ...

1 min · MrOptimist