项目地址:theme-next1
2
3
4
5
6
7
8
9cd $HEXO_ROOTDIR
git clone https://github.com/theme-next theme/next
vim _config.yml
set: theme: hexo-theme-next
language: zh-Hans
cd themes/hexo-theme-next
vim _config.yml
set: scheme: Gemini
打开分类和标签页面1
2cd $HEXO_ROOTDIR
hexo new page categories && hexo new page tags
会提示1
2INFO Created: ~/source/categories/index.md
INFO Created: ~/source/tags/index.md
在index.md中修改成1
2
3
4
5
6
7---
title: 文章分类
date: xxx
type: "categories"
---
...
最后在文章中添加1
2
3
4
5
6title: xxx
data: xxx
categories: Categories
tags:
- Tags1
- Tags2
最后在远端更新1
2cd $HEXO_ROOTDIR
hexo clean && hexo generate && hexo deploy