avatar

目录
windows下hexo搭建博客

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
2
3
4
hexo init hexo # 初始化
hexo install # 安装依赖
hexo g # 生产静态文件
hexo s # 启动服务器

4 查看博客

浏览器访问http://127.0.0.1:4000

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
2
3
4
5
6
---
title: categories
date: 2019-05-24 09:10:30
type: "categories"
layout: "categories"
---

7 新建标签 tags 页

输入如下命令:

shell
1
hexo new page "tags"
h
1
2
3
4
5
6
---
title: tags
date: 2019-05-24 09:16:04
type: "tags"
layout: "tags"
---

8 新建关于我 about 页

about 页是用来展示关于我和我的博客信息的页面,如果在你的博客 source 目录下还没有 about/index.md 文件,那么你就需要新建一个,命令如下:

shell
1
hexo new page "about"

编辑你刚刚新建的页面文件 /source/about/index.md,至少需要以下内容:

h
1
2
3
4
5
6
---
title: about
date: 2019-05-24 09:16:04
type: "about"
layout: "about"
---

9 部署博客

shell
1
hexo d
文章作者: foochane
文章链接: https://foochane.cn/article/2019052201.html
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 foochane
打赏
  • 微信
    微信
  • 支付宝
    支付宝

评论