使用GitHub Pages+Jekyll搭建个人博客网站

创建博客

1、在你的GitHub上创建一个名为username.github.io的repository,username是你的GitHub账号名。
2、执行以下命令将这个repository拷贝到你本机:

git clone https://github.com/username/username.github.io

这时,你的个人博客就搭建好了,只不过它现在是一个空壳。:)

安装Jekyll

1、替换源(国外的源实在是太慢了,科学上网也不行)

gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/
bundle config mirror.https://rubygems.org https://gems.ruby-china.com

2、安装:

gem install bundler jekyll
bundle install

为博客选择主题

你可以在Jekyll Themes上选择你喜欢的主题。
以Memoirs - Jekyll Bootstrap Theme为例:
1、进入到该主题的Homepage页面,将该主题下载到本机(可以使用git clone命令或直接下载zip包)。
2、将下载的主题目录,除了.git目录以外的其他所有,移至你本机的username.github.io目录下。
3、修改_config.yml文件中的baseurl属性,改为''

调试&发布

1、在本机username.github.io目录下,执行

bundle exec jekyll serve

访问http://127.0.0.1:4000/就可以在本机看到效果。
2、使用git push命令将username.github.io的修改推送至远端完成发布,
访问https://username.github.io即可看到效果。


参考资料:

  • https://pages.github.com/
  • https://jekyllrb.com/
  • https://gems.ruby-china.com/
  • https://bootstrapstarter.com/bootstrap-templates/jekyll-theme-memoirs/

你可能感兴趣的:(使用GitHub Pages+Jekyll搭建个人博客网站)