1. Github Page
- 创建仓库:创建
youname.github.io
的仓库;
- 打开Github Page:默认会开启该功能,测试访问地址;
- 配置SSH KEY:使用命令
ssh-keygen -t rsa -C "email"
,并配置到Github
上;
- 检出工程:检出该工程;
2. Hexo
环境安装:
1 2 3 4 5
| $ npm install -g hexo $ npm install hexo-deployer-git --save $ hexo init $ hexo g $ hexo s
|
修改配置:
1 2 3 4 5 6 7 8 9 10 11 12 13
| deploy: type: git repository: git@github.com:[youname]/[youname].github.io.git branch: master title: 站点名称 subtitle: description: author: 作者 language: zh-CN timezone:
|
常用命令:
1 2 3 4 5 6 7 8
| hexo n "postName" hexo n page "pageName" hexo g hexo s hexo d hexo help hexo version hexo d -g
|
文章格式
1 2 3 4 5 6 7 8
| --- title: date: categories: tags: description: ---
|
3. Hexo Theme - Maupassant
安装主题:
1 2 3
| $ git clone https://github.com/tufu9441/maupassant-hexo.git themes/maupassant $ npm install hexo-renderer-jade@0.3.0 --save $ npm install hexo-renderer-sass --save
|
配置主题:
语法高亮:
1 2 3 4 5 6
| /* _config.yml */ highlight: enable: true auto_detect: true line_number: true tab_replace:
|
参考文档
使用hexo+github搭建免费个人博客详细教程
大道至简——Hexo简洁主题推荐