使用hexo 搭建博客

hexo 博客搭建

step1,准备node, npm环境

1
2
3
4
5
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash
nvm install node

node -v
npm install npm -g

step2,安装和部署hexo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 安装hexo
npm install -g hexo-cli
npm install -g hexo


# 部署hexo
hexo init tech-blog
cd tech-blog
npm install

# 下载主题到themes目录,这里选择maupassant主题
git clone https://github.com/tufu9441/maupassant-hexo.git themes/maupassant
npm install hexo-renderer-pug --save
npm install hexo-renderer-sass-next --save

# 创建一个页面

运行博客,本地执行如下命令

1
hexo g && hexo s

3. 配置github pages

在github创建{username}.github.io仓库,例如我的github用户名为larrystd,仓库名就是larrystd.github.io。仓库需要设置成public

在./_config.yml文件增加

1
2
3
4
deploy:
type: git
repo: git@github.com:larrystd/larrystd.github.io.git
branch: master

之后执行hexo g && hexo d,可自动将打包后的静态文件上传到github的仓库

在larrystd.github.io仓库点击Settings-Pages,Build and deployment-source选择Deploy from branch,branch选择master /(root)

4. 配置本地搜索

1
2
3
4
5
# ./themes/manupassant/_config.yml增加
self_search: true

# 命令行执行
npm install hexo-generator-search --save

5. 配置字数统计

1
2
3
4
5
# ./themes/manupassant/_config.yml增加
wordcount: true

# 命令行执行
npm install hexo-wordcount --save

6. 配置gitalk评论插件

点击https://github.com/settings/applications/new,申请OAuth application。Homepage URL和Authorization callback URL均填写{username}.github.io

复制Client ID和Client secrets

github再创一个repo,例如blog

./themes/manupassant/_config.yml增加

1
2
3
4
5
6
7
gitalk: ## See: https://github.com/gitalk/gitalk
enable: true ## If you want to use Gitment comment system please set the value to true.
owner: ${username} ## Your GitHub ID, e.g. username
repo: blog ## The repository to store your comments, make sure you're the repo's owner, e.g. gitalk.github.io
client_id: xxx ## GitHub client ID, e.g. 75752dafe7907a897619
client_secret: xxx ## GitHub client secret, e.g. ec2fb9054972c891289640354993b662f4cccc50
admin: ${username} ## Github repo owner and collaborators, only these guys can initialize github issues.

最终的./_config.yml配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# Hexo Configuration
## Docs: https://hexo.io/docs/configuration.html
## Source: https://github.com/hexojs/hexo/

# Site
title: Infinity Code
subtitle: 'Simplicity is the soul of efficiency.'
description: ''
keywords:
author: infinity
language: zh-CN
timezone: ''

# URL
## Set your site url here. For example, if you use GitrssHub Page, set url as 'https://username.github.io/project'
url: https://larrystd.github.io
permalink: :year/:month/:day/:title/
permalink_defaults:
pretty_urls:
trailing_index: true # Set to false to remove trailing 'index.html' from permalinks
trailing_html: true # Set to false to remove trailing '.html' from permalinks

# Directory
source_dir: source
public_dir: public
tag_dir: tags
archive_dir: archives
category_dir: categories
code_dir: downloads/code
i18n_dir: :lang
skip_render:

# Writing
new_post_name: :title.md # File name of new posts
default_layout: post
titlecase: false # Transform title into titlecase
external_link:
enable: true # Open external links in new tab
field: site # Apply to the whole site
exclude: ''
filename_case: 0
render_drafts: false
post_asset_folder: false
relative_link: false
future: true
syntax_highlighter: highlight.js
highlight:
line_number: true
auto_detect: false
tab_replace: ''
wrap: true
hljs: false
prismjs:
preprocess: true
line_number: true
tab_replace: ''
mathjax2: true
feed:
type: atom
path: atom.xml
limit: false

# Home page setting
# path: Root path for your blogs index page. (default = '')
# per_page: Posts displayed per page. (0 = disable pagination)
# order_by: Posts order. (Order by date descending by default)
index_generator:
path: ''
per_page: 10
order_by: -date

# Category & Tag
default_category: uncategorized
category_map:
tag_map:

# Metadata elements
## https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
meta_generator: true

# Date / Time format
## Hexo uses Moment.js to parse and display date
## You can customize the date format as defined in
## http://momentjs.com/docs/#/displaying/format/
date_format: YYYY-MM-DD
time_format: HH:mm:ss
## updated_option supports 'mtime', 'date', 'empty'
updated_option: 'mtime'

# Pagination
## Set per_page to 0 to disable pagination
per_page: 10
pagination_dir: page

# Include / Exclude file(s)
## include:/exclude: options only apply to the 'source/' folder
include:
exclude:
ignore:

# Extensions
## Plugins: https://hexo.io/plugins/
## Themes: https://hexo.io/themes/
theme: maupassant

# Deployment
## Docs: https://hexo.io/docs/one-command-deployment
deploy:
type: git
repo: git@github.com:larrystd/larrystd.github.io.git
branch: master

themes/maupassant/_config.yml 配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
disqus:
enable: false ## If you want to use Disqus comment system, please set the value to true.
shortname: ## Your disqus_shortname, e.g. username
api: ## You can visit Disqus comments in China mainland without barriers using Disqus API, e.g. https://disqus.skk.moe/disqus/
apikey: ## Your API key obtained in Disqus API Application, e.g. yk00ZB1fjYGRkrCrDDRYDUjpp26GJWJiJRZQZ5SY0r3th5FMW6pnSzQMnWH7ua7r
admin: ## Username of your Disqus moderator, e.g. username
admin_label: ## The text of Disqus moderator badge, e.g. Mod
uyan: ## Your uyan_id. e.g. 1234567
livere: ## Your livere data-uid, e.g. MTAyMC8zMDAxOC78NTgz
changyan: ## Your changyan appid, e.g. cyrALsXc8
changyan_conf: ## Your changyan conf, e.g. prod_d8a508c2825ab57eeb43e7c69bba0e8b
gitalk: ## See: https://github.com/gitalk/gitalk
enable: true ## If you want to use Gitment comment system please set the value to true.
owner: larrystd ## Your GitHub ID, e.g. username
repo: blogtalk ## The repository to store your comments, make sure you're the repo's owner, e.g. gitalk.github.io
client_id: xxx ## GitHub client ID, e.g. 75752dafe7907a897619
client_secret: xxx ## GitHub client secret, e.g. ec2fb9054972c891289640354993b662f4cccc50
admin: larrystd ## Github repo owner and collaborators, only these guys can initialize github issues.
valine: ## See: https://valine.js.org
enable: false ## If you want to use Valine comment system, please set the value to true.
appid: ## Your LeanCloud application App ID, e.g. pRBBL2JR4N7kLEGojrF0MsSs-gzGzoHsz
appkey: ## Your LeanCloud application App Key, e.g. tjczHpDfhjYDSYddzymYK1JJ
notify: false ## Mail notifier, see https://github.com/xCss/Valine/wiki/Valine-评论系统中的邮件提醒设置
verify: false ## Validation code.
placeholder: Just so so ## Comment box placeholders.
avatar: "mm" ## Gravatar type, see https://github.com/xCss/Valine/wiki/avatar-setting-for-valine
pageSize: 10 ## Number of comments per page.
guest_info: nick,mail,link ## Attributes of reviewers.
minivaline: ## See: https://github.com/MiniValine/MiniValine
enable: false ## If you want to use MiniValine comment system, please set the value to true.
appId: ## Your LeanCloud application App ID, e.g. pRBBL2JR4N7kLEGojrF0MsSs-gzGzoHsz
appKey: ## Your LeanCloud application App Key, e.g. tjczHpDfhjYDSYddzymYK1JJ
placeholder: Write a Comment ## Comment box placeholder.
adminEmailMd5: ## The MD5 of Admin Email to show Admin Flag.
math: true ## Support MathJax.
md: true ## Support Markdown.
# MiniValine's display language depends on user's browser or system environment
# If you want everyone visiting your site to see a uniform language, you can set a force language value
# Available values: en | zh-CN | (and many more)
# More i18n info: https://github.com/MiniValine/minivaline-i18n
lang:
waline: ## See: https://waline.js.org/
enable: false ## If you want to use Waline comment system, please set the value to true.
serverURL: ## Your server url, e.g. https://your-domain.vercel.app
pageSize: ## The desired number of comments shown in each page.
utterances: ## See: https://utteranc.es
enable: false ## If you want to use Utterances comment system, please set the value to true.
repo: ## The repository utterances will connect to, e.g. tufu9441/comments
identifier: title ## The mapping between blog posts and GitHub issues.
theme: github-light ## Choose an Utterances theme which matches your blog.
twikoo: ## See: https://twikoo.js.org
enable: false ## If you want to use twikoo comment system, please set the value to true.
envId: ## Tencent CloudBase envId
region: ## Tencent CloudBase region, e.g. ap-shanghai
path: ## Article path, e.g. window.location.pathname

google_search: false ## Use Google search, true/false.
baidu_search: false ## Use Baidu search, true/false.
swiftype: ## Your swiftype_key, e.g. m7b11ZrsT8Me7gzApciT
self_search: true ## Use a jQuery-based local search engine, true/false.
google_analytics: ## Your Google Analytics tracking id, e.g. UA-42425684-2
baidu_analytics: ## Your Baidu Analytics tracking id, e.g. 8006843039519956000
fancybox: true ## If you want to use fancybox please set the value to true.
show_category_count: false ## If you want to show the count of categories in the sidebar widget please set the value to true.
toc_number: true ## If you want to add list number to toc please set the value to true.
shareto: false ## If you want to use the share button please set the value to true, and you must have hexo-helper-qrcode installed.
busuanzi: false ## If you want to use Busuanzi page views please set the value to true.
wordcount: true ## If you want to display the word counter and the reading time expected to spend of each post please set the value to true, and you must have hexo-wordcount installed.
widgets_on_small_screens: false ## Set to true to enable widgets on small screens.
canvas_nest:
enable: false ## If you want to use dynamic background please set the value to true, you can also fill the following parameters to customize the dynamic effect, or just leave them blank to keep the default effect.
color: ## RGB value of the color, e.g. "100,99,98"
opacity: ## Transparency of lines, e.g. "0.7"
zIndex: ## The z-index property of the background, e.g. "-1"
count: ## Quantity of lines, e.g. "150"
donate:
enable: false ## If you want to display the donate button after each post, please set the value to true and fill the following items on your need. You can also enable donate button in a page by adding a "donate: true" item to the front-matter.
github: ## GitHub URL, e.g. https://github.com/Kaiyuan/donate-page
alipay_qr: ## Path of Alipay QRcode image, e.g. /img/AliPayQR.png
wechat_qr: ## Path of Wechat QRcode image, e.g. /img/WeChatQR.png
btc_qr: ## Path of Bitcoin QRcode image, e.g. /img/BTCQR.png
btc_key: ## Bitcoin key, e.g. 1KuK5eK2BLsqpsFVXXSBG5wbSAwZVadt6L
paypal_url: ## Paypal URL, e.g. https://www.paypal.me/tufu9441
post_copyright:
enable: true ## If you want to display the copyright info after each post, please set the value to true and fill the following items on your need.
author: Infinity ## Your author name, e.g. tufu9441
copyright_text: ## Your copyright text, e.g. The author owns the copyright, please indicate the source reproduced.
love: false ## If you want the peach heart to appear when you click anywhere, set the value to true.
plantuml: ## Using PlantUML to generate UML diagram, must install hexo-filter-plantuml (https://github.com/miao1007/hexo-filter-plantuml).
render: "PlantUMLServer" ## Local or PlantUMLServer.
outputFormat: "svg" ## common options: svg/png
copycode: true ## If you want to enable one-click copy of the code blocks, set the value to true.
dark: true ## If you want to toggle between light/dark themes, set the value to true.
totop: true ## If you want to use the rocketship button to return to the top, set the value to true.
external_css: false ## If you want to load an external CSS file, set the value to true and create a file named "external.css" in the source/css folder.
favicon: /images/favicon.ico

menu:
- page: home
directory: .
icon: fa-home
- page: archive
directory: archives/
icon: fa-archive
- page: tags
directory: tags/
icon: fa-tags
- page: about
directory: about/
icon: fa-user
- page: rss
directory: atom.xml
icon: fa-rss

widgets: ## Six widgets in sidebar provided: search, category, tag, recent_posts, recent_comments and links.
- search
- info
- category
- tag
- recent_posts
- recent_comments
- links

info:
avatar: /img/avatar.png
discription: To be a better man.
outlinkitem:
- name: envelope
outlink: venray.kong@outlook.com
message: Email
- name: github
outlink: https://github.com/larrystd
message: Github
- name: rss
outlink: /atom.xml
message: RSS

links:
- title: todo
url: http://www.example1.com/

timeline:
- num: 1
word: 2014/06/12-Start
- num: 2
word: 2014/11/29-XXX
- num: 3
word: 2015/02/18-DDD
- num: 4
word: More

# Static files
js: js
css: css

# Theme version
version: 1.0.0

hexo 原理

模板

themes/maupassant 模板下面的目录

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.
├── _config.yml
├── languages
│ ├── de-DE.yml
│ ├── en.yml
│ ├── zh-CN.yml
│ └── zh-TW.yml
├── layout
│ ├── archive.pug
│ ├── base.pug
│ ├── base-without-sidebar.pug
│ ├── blogroll.pug
│ ├── index.pug
│ ├── page.pug
│ ├── _partial
│ ├── post.pug
│ └── _widget
├── LICENSE
├── package.json
├── README.md
└── source
├── css
├── img
└── js
├── codeblock-resizer.js
├── copycode.js
...

layout目录

layout 目录下面的*.pug文件 是html template模板,定义了主要页面的布局

hexo的主要页面有三个

  1. post,表示文章的布局
  2. page,表示目录的布局,如主页、archieve页,页面都是文章标题的目录
  3. draft, 这个应用的比较少

hexo 创建页面的命令
hexo new page "{name}", hexo new post "{name}"

source目录

source下面有三个目录,css,img, js,这三个都会被layout下面定义的模板所引用

hexo 自定义内容

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.
├── _config.yml
├── db.json
├── node_modules
│ ├── abab
│ ├── abbrev
│ ├── acorn
│ ├── acorn-globals
├── package.json
├── package-lock.json
├── public
│ ├── 2024
│ ├── about
│ ├── archives
│ ├── atom.xml
│ ├── categories
│ ├── css
│ ├── favicon.ico
│ ├── img
│ ├── index.html
│ ├── js
│ ├── search.xml
│ └── tags
├── scaffolds
│ ├── draft.md
│ ├── page.md
│ └── post.md
├── source
│ ├── about
│ ├── favicon.ico
│ ├── images
│ ├── _posts
│ │ └── hello-world.md
│ └── tags
├── themes
│ └── maupassant
└── yarn.lock

node_modules 是npm install xxx –save下载到当前目录的模块

scaffolds目录定义了post,page, draft三个主要页面的构造模板

source下面是定义的页面,src/_posts 下面是文档

public目录下是打包形成的静态文件