新建的Hexo项目无法访问categories和tags页面,如果网站要用到这两个页面,需要先创建它们。
创建categories和tags页面
hexo new page "tags" |
修改tags页面的Front-matter
修改source/tags/index.md
,在文件头部分增加下面的内容,这样可以禁用tags页面的评论功能。
type: tags |
中文网站建议将页面标题修改为中文,修改source/tags/index.md
文件Front-matter中的title,结果如下:
title: 文章标签 |
修改categories页面的Front-matter
修改source/categories/index.md
,在文件头部分增加下面的内容,这样可以禁用categories页面的评论功能。
type: categories |
中文网站建议将页面标题修改为中文,修改source/categories/index.md
文件Front-matter中的title,结果如下:
title: 文章分类 |