使用hexo搭建github.io博客(三)-更换主题

上一篇完成后,我们知道了要怎么来发布博客文章,但是,这个博客丑了点,这篇就来说说怎么更换主题让博客变得高大上

一.寻找喜欢的主题

可以在这里找到

我自己找到了一款更好看的,在这里

以我自己的安装过程为例:

二.安装主题:

到hexo所在的路径下E:hexo,右键打开Git Bush,执行:

$ git clone https://github.com/litten/hexo-theme-yilia.git themes/yilia

三.使用主题:

打开_config.yml做如下修改:

theme: yilia

四.更新主题:

进入E:hexo/themes/yilia,右键打开Git Bush,执行 git pull:

五.测试推送:

回到E:hexo,执行: hexo generate hexo server, 打开localhost:4000预览,就可以看到新的主题了

然后hexo deploy推送到github.io

六.配置主题:

主题配置在E:\hexo\themes\yilia下的_config.yml:

我是这样配置的:

# Header
menu:
 主页: /
 所有文章: /archives
 # 随笔: /tags/随笔

# SubNav
subnav:
 github: "https://github.com/OOP-Code-Bunny/"       //github地址
 weibo: "http://weibo.com/p/1005052438739075/home"  //微博地址
 rss: "#"                                           //订阅
 zhihu: "#"                                         //知乎地址
 #douban: "#"                                       //下面这些前面带#的,就不显示在主页上,如果有账号,就可以打开
 #mail: "#"
 #facebook: "#"
 #google: "#"
 #twitter: "#"
 #linkedin: "#"

rss: /atom.xml

# Content
excerpt_link: more
fancybox: true
mathjax: true

# Miscellaneous
google_analytics: ''
favicon: /favicon.png

#你的头像url
avatar: "https://avatars1.githubusercontent.com/u/11350373?v=3&s=460"     //设置头像图片
#是否开启分享
share: true
#是否开启多说评论,填写你在多说申请的项目名称 duoshuo: duoshuo-key
#若使用disqus,请在博客config文件中填写disqus_shortname,并关闭多说评论
duoshuo: true                                                             //使用'多说'评论
#是否开启云标签
tagcloud: true

#是否开启友情链接
#不开启——
#friends: false
#开启——
friends:
 我的github: https://github.com/OOP-Code-Bunny/                           //自定义友情链接
 周孝刚: https://github.com/a5635268/
 王麟: http://kingarthas37.github.io/
 郑印: https://github.com/zhengyin/

#是否开启“关于我”。
#不开启——
#aboutme: false
#开启——
aboutme: 虽然咸鱼翻身还是咸鱼,但至少可以变得好吃一点                                   //关于我介绍

duoshuo_shortname: codebunny                                             //多说域名,后面再解释

七.发布主题:

hexo generate hexo deploy 发布到github.io

下一篇讲解怎么对主题做一些美化修改,以及添加多说评论