为GitHub Page添加next主题与评论功能

1.添加next 主题

1.1下载主题

添加next主题很简单,首先,去吧next主题下载下来,下载地址在
https://github.com/iissnan/hexo-theme-next
有两种下载方式:

  1. 直接把压缩包下载下来。


    为GitHub Page添加next主题与评论功能_第1张图片
    下载压缩包
  2. 使用git,可以在blog文件夹下:

$ git clone https://github.com/iissnan/hexo-theme-next themes/next
# 也就是在blog/themes下建立一个next文件夹,再吧hexo-theme-next放到该文件夹下。

或者手动建立好文件夹(在themes下,建立next文件夹,定位到文件夹后)

$ git clone https://github.com/iissnan/hexo-theme-next 

设置使用next主题

在文件夹blog下,编辑_config.yml,修改

theme: landscape

theme: next

注意空格。

最后,推送一下:

git clean && git d && git g

2.选择leancloud作为评论插件

leancloud

  1. 去官网注册。
  2. 创建应用。
  3. 应用 -> 设置 -> 应用key
  4. 获取你的appid 和appkey
  5. 之后打开blog/themes/next/_config.yml,修改配置,定位到valine( 缬氨酸)
valine:
  enable: true
  appid:  你的appid
  appkey:  你的appkey
  notify: false # mail notifier , https://github.com/xCss/Valine/wiki 是否开启邮箱提醒
  verify: false # Verification code   是否开启验证码
  placeholder: Just go go # comment box placeholder
  avatar: mm # gravatar style
  guest_info: nick,mail,link # custom comment header
  pageSize: 10 # pagination size
  1. 最后,要回到leancloud网站上,在设置->安全中心 里,填写web安全域名。例如我的安全域名为:https://henryzhou1002.github.io/
  2. 部署
  3. 等待3min即可使用。
  4. enjoy。

你可能感兴趣的:(为GitHub Page添加next主题与评论功能)