Hueman主题的折腾之路

Hueman主题的安装

虽然网上各种博客的教程大多使用的都是Next主题,但是个人审美上还是对Next的风格接受不能,Hueman才是我心目中的博客风格应有的样子。下面就介绍一下Hueman主题的使用步骤:

  1. 手动下载Hueman主题,或者将主题Clone到本地 ../themes 目录下 git clone https://github.com/ppoffice/hexo-theme-hueman.git
  2. 在Hexo文件目录下打开**_config.xml文件,找到关键词 theme 将主题名称修改为:hexo-theme-hueman**
  3. \Hexo\themes\hexo-theme-hueman目录下找到**_config.xml.example文件,将后缀.example**去掉
  4. 在Hexo文件目录下打开git bash,依次执行 git cleangit g -d,将Hueman主题成功提交到Gitpage. 打开博客网址即可看到主题效果。

Hueman主题基本配置

theme: 后面改为hueman

修改语言

language: 后面改为zh-CN

修改title

这个会在你主页上,显示在浏览器框中的网页名称

修改subtitle副标题

博客logo边上的文字说明

修改author

author: 后面添加你自己的名字(这个将在网页的底部显示)

添加about页面

在Hexo文件目录下的打开git bash 输入以下代码:
hexo new page "about"

评论系统

Hueman支持多种评论系统,但有些目前已经停止服务,有些在国内被墙了,比如以前很喜欢用disqus,可惜国内并不支持。最近发现gitalk比较好用,因此打算将评论系统改成gitalk。

Hueman主题下配置Gitalk
在Hueman主题下配置Gitalk的基本方法如下:

  1. 设置github认证: 登陆github, 在个人账号下选择Setting, 然后选择developer setting, 接着选择OAuth Apps在该界面下选择新建Github App.其中Homepage URL和Authorization callback URL都必须是一样的,比如我个人github的博客地址https://andrelyl.github.io/ 。然后点击保存,记下Client ID和 Client Secret。
  2. 打开Hueman的主题配置文件_config.yml,在gitalk部分填写相关信息:
1
2
3
4
5
6
7
gitalk:
on: true
owner: # Github user name
repo: # url个人博客的
client_id: # 上一步得到的Client ID
client_secret: # 填写上一步得到的Client Secret
admin: # GitHub repo owner and collaborators who can initialize github issues
  1. 部署到Github上
作者

John Doe

发布于

2019-12-28

更新于

2020-03-10

许可协议

You need to set install_url to use ShareThis. Please set it in _config.yml.
You forgot to set the business or currency_code for Paypal. Please set it in _config.yml.

评论