1 安装node.js
下载node.js的网址https://nodejs.org/en/download/
点击安装
在命令提示符中使用 node -v 命令来测试 node.js 是否安装成功。
2 安装hexo
bash
1 | npm install -g hexo-cli |
3 搭建博客
bash
1 | hexo init hexo # 初始化 |
4 查看博客
5 修改主题
Hexo 根目录下的 _config.yml 的 theme 的值:theme: hexo-theme-matery
6 新建分类 categories 页
categories 页是用来展示所有分类的页面,如果在你的博客 source 目录下还没有 categories/index.md 文件,那么你就需要新建一个,命令如下:
bash
1 | hexo new page "categories" |
编辑你刚刚新建的页面文件 /source/categories/index.md,至少需要以下内容:
h
1 | --- |
7 新建标签 tags 页
输入如下命令:
shell
1 | hexo new page "tags" |
h
1 | --- |
8 新建关于我 about 页
about 页是用来展示关于我和我的博客信息的页面,如果在你的博客 source 目录下还没有 about/index.md 文件,那么你就需要新建一个,命令如下:
shell
1 | hexo new page "about" |
编辑你刚刚新建的页面文件 /source/about/index.md,至少需要以下内容:
h
1 | --- |
9 部署博客
shell
1 | hexo d |