一、更换主题
- 下载主题,Next主题
- 放入theme文件夹修改配置文件theme: Next
- 关闭目录自动展开:修改主题配置文件sidebar->disply: hide
- 选择主题风格:修改Schemes
二、添加分类、标签、搜索等栏目
- 添加分类:
hexo new page categories
,会在source目录下生成categories文件夹,修改配置文件:
1 | --- |
即添加type: "categories"
参数
- 添加标签:
hexo new page tags
- 添加关于:
hexo new page about
- 添加搜索:
npm install hexo-generator-search --save
,修改hexo配置文件,添加如下内容:
1 | search: |
修改主题配置文件:
1 | local_search: |
- 添加站点地图:
npm install hexo-generator-seo-friendly-sitemap --save
,修改hexo配置文件:
1 | sitemap: |
修改主题配置文件:
1 | sitemap: /sitemap.xml || sitemap |
- 添加RSS订阅:
npm install hexo-generator-feed --save
,修改主题配置文件rss: /atom.xml