【发布时间】:2017-08-14 22:24:33
【问题描述】:
我已经成功地使用 Jekyll v3.4.3 创建了我的第一个静态网站。现在我想将默认的“minima”主题更改为另一个基于 gem 的主题,例如,jekyll-theme-minimal
据我了解,根据jekyll documentation,这只需要以下步骤:
1.- 将主题添加到您网站的 Gemfile:
gem "jekyll-theme-minimal", "~> 0.0.3"
2.- 安装主题:
bundle install
3.- 将以下内容添加到您网站的 _config.yml 以激活主题(注释掉“minima”并添加新主题):
theme: jekyll-theme-minimal
4.- 建立您的网站:
bundle exec jekyll serve
我遵循了这些步骤,但是构建网站(第 4 步)会带来以下错误:
$ bundle exec jekyll serve
Configuration file: /home/username/jekyll/myblog/_config.yml
Configuration file: /home/username/jekyll/myblog/_config.yml
Source: /home/username/jekyll/myblog
Destination: /home/username/jekyll/myblog/_site
Incremental build: disabled. Enable with --incremental
Generating...
Build Warning: Layout 'post' requested in _posts/2017-03-22-welcome-to-jekyll.markdown does not exist.
Liquid Exception: Could not locate the included file 'icon-github.html' in any of ["/home/username/jekyll/myblog/_includes"]. Ensure it exists in one of those directories and, if it is a symlink, does not point outside your site source. in about.md
我看到新的基于 gem 的主题已经安装了
$ bundle show jekyll-theme-minimal
/home/username/.gem/ruby/2.4.0/gems/jekyll-theme-minimal-0.0.3
但我注意到新主题没有 _includes 目录。另外,我看到我的 Jekyll 站点目录中的 about.md 文件仍在引用默认的“minima”主题:
$ cat ~/jekyll/myblog/about.md
---
layout: page
title: About
permalink: /about/
---
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
You can find the source code for the Jekyll new theme at:
{% include icon-github.html username="jekyll" %} /
[minima](https://github.com/jekyll/minima)
You can find the source code for Jekyll at
{% include icon-github.html username="jekyll" %} /
[jekyll](https://github.com/jekyll/jekyll)
如何在我的网站中将默认的“minima”主题更改为另一个基于 gem 的主题?
【问题讨论】: