GitHub Pages + Jekyll 搭建网站、更换主题

赵晨
2023-12-01

这里只记录主要问题:

选择主题并自定义主题:
在安装好bundle以后(若在安装 gem install nokogiri -v '1.8.4’报错,请看另一篇文章),去 https://github.com 新建repo;

  1. repo的名字最好是:username.github.io
  2. create rep 过后,来到 repo --> ‘setting’ 拖动到下面进入 choose Theme
  3. 选中喜欢的主题过后点击 select Theme,这时回到repo,会有两个文件,其中一个是 _config.yml。这时候,访问 https://username/username.github.io 会得到你设置的模板;
  4. git clone repo,想更换选择的模板,进入repo目录下,即username.github.io 的目录下,删除里面的默认文件(_config.yml和另一个);
  5. http://jekyllthemes.org/ 这里下载模板,并解压,把内容全拷贝到username.github.io目录下,再把代码提交到GitHub;
  6. 建议清理下浏览器缓存,再次去repo看看是否已经commit成功;
  7. 运行: https://username/username.github.io,successful!
 类似资料: