hexo new [layout] <title>
: 以指定布局(layout)和标题创建文章hexo new page <title>
:在source
目录下创建文件夹+index.mdhexo server
: 在本地运行项目hexo generate
: 生成静态文件hexo deploy
: 部署到远程站点hexo new page <category name>
在博客根目录下source
文件夹中创建一个新的分类文件夹。categories
字段
```
—
title: 我的技术文章
date: 2023-09-20 14:00:00
categories:
此文章属于xxx分类。 ```
http://your-blog-url/categories/<category name>/
可以查看该类目下所有文章在文章Front Matter中添加tags
字段
---
title: 示例文章
date: 2023-09-19 10:00:00
tags:
- 标签1
- 标签2
- 标签3
---
![图片描述](../img/posts/WX20231219-001924@2x.png)