搭建jekyll博客

前言

主流的个人博客都是用hexo搭建的,一部分人喜欢用jekyll搭建,下面我们来细说一下操作流程

效果

今天,我们要做到到这个主题效果http://huangxuan.me/

下载

下载rubygems http://rubyinstaller.org/ 选择2.3.3 released,安装过程中现在加入path。

切换ruby镜像

在git bash下

$ gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/
$ gem sources -l
https://gems.ruby-china.org
# 确保只有 gems.ruby-china.org

如果遇到SSL问题 将https改为http。

下载bundler

$ gem install bundler

如果遇到使用gem下载遇到ENETRESET 问题,请打开https://github.com/rubygems/rubygems/issues/1214,解决办法关键就是关闭防火墙。

下载jekyll

$ gem install jekyll

下载jeky-paginate

$ gem install jekyll-paginate

克隆主题

新建jekyll文件夹执行

$ git clone [email protected]:Huxpro/huxblog-boilerplate.git

cd到huxblog-boilerplate

执行jekyll serve 可以在http://localhost:4000看到效果。

总结

  1. jekyll博客没hexo博客方便切换主题。
  2. jeky博客加入不同字体,图片,打破你的审美疲劳。

你可能感兴趣的:(搭建jekyll博客)