A pure theme put your articles in order.
git clone https://github.com/ufresh2013/hexo-theme-notebook.git
npm install
修改根目录下的_config.yml
内的theme
值为hexo-theme-notebook
文章列表根据category分类,每篇文章都要加上category
,且只写一个值
---
title: ES6参考手册
date: 2016-12-23 16:08:28
category:
- 前端
---
- 在根目录下安装插件
npm install hexo-generator-tag --save-dev
npm install hexo-generator-search --save-dev
- 手动在/source下创建目录和index.md文件
├── source
| └── _posts
| └── search
| └── index.md
| └── favicon.ico
/source/about/index.md
---
title: Search
layout: page
type: search
---
- 生成搜索文件
hexo g
hexo server