0%
Hexo的简单使用
1.添加关于页面
1 2 3 4 5
| hexo new page "about" # 修改themes/chan/_config.yml nav: name: 关于 url: /about
|
2.添加分类-标签页面
1 2 3 4 5 6
| --- title: 标题 date: 时间 categories: 分类 tags: 标签 ---
|
3.设置阅读全文
1 2
| # 将下面语句写在需要出现的位置,自定义预览长度 <!-- more -->
|
4.设置文档模板
修改scaffolds目录下的post文件
1 2 3 4 5 6
| --- title: {{ title }} date: {{ date }} categories: tags: ---
|