安装hexo及所需的环境
1.下载安装git
2.下载安装node
3.利用node附带安装好的npn命令安装hexo1
npm install -g hexo-cli
4.安装部署插件 hexo-deployer-git。
1 | npm install hexo-deployer-git --save |
安装 Hexo 完成后,请执行下列命令,Hexo 将会在指定文件夹中新建所需要的文件。1
2
3$ hexo init <folder>
$ cd <folder>
$ npm install
5.你可以执行下列命令来创建一篇新文章。
1 | $ hexo new [layout] <title> |
6.更换主题
1 | $ cd your-hexo-site |
7.自定义字体及样式
\themes\next\source\css_variables\custom.styl 中增加自定义字体及样式
下面是修改站点标题的1
2
3
4
5
6$font-family-logo = Yesteryear
$logo-font-size = 26px
@font-face{
font-family: Yesteryear;
src: url('/fonts/Yesteryear-Regular.woff.ttf');
}
8.语言设置
hexo中设置language: zh-Hans #语言
next会自动去找翻译的中文
9.头像设置1
avatar: http://avatar.csdn.net/D/6/D/1_dz_hexiang.jpg #头像设置
10.站点普通设置
设置站点名字、描述、座右铭、等其他信息
1 | title: Mr.HeXiang Blog |
11.添加标签1
hexo new page tags
编辑站点的source/tags/index.md,Front-matter 中添加1
2
3
4title: tags
date: 2015-10-20 06:49:50
type: "tags"
comments: false
随后可以在其他文章Front-matter 中加入标签1
2
3
4
5
6
7---
title: 文章
date: 2017-11-23 18:52:54
categories:
- 前端
- Hexo
---
12.添加分类1
hexo new page categories
编辑站点的source/categories/index.md, Front-matter 中添加1
2
3
4title: categories
date: 2015-10-20 06:49:50
type: "categories"
comments: false
随后可以在其他文章Front-matter 中加入分类
1 | --- |
12.添加404和关于
1 | hexo new page 404 |