This repository has been archived by the owner on Nov 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
showzeng edited this page Aug 14, 2018
·
7 revisions
需要明白的一点,因为 GitHub pages 支持的主题 有限,所以部署到 GitHub pages 时需要使用远程主题这一配置
在你的 Gemfile
文件中加入下面这一行:
gem "jekyll-theme-minimalism"
示例 (Gemfile):
source "https://rubygems.org"
gem "jekyll", "~> 3.8.3"
group :jekyll_plugins do
gem "jekyll-theme-minimalism"
end
然后使用 bundle 执行安装:
$ bundle install
或者你也可以手动下载安装:
$ gem install jekyll-theme-minimalism
在你的配置文件 _config.yml
中修改启用主题 (本地预览):
theme: jekyll-theme-minimalism
使用 GitHub pages 发布时,在你的配置文件 _config.yml
中修改启用远程主题:
# theme: jekyll-theme-minimalism
remote_theme: showzeng/Minimalism
基于 Jekyll 简洁易用性,直接下载主题包解压后即可使用
你可以在 releases 页下载最新的主题包解压或者直接 clone 本项目至本地。但此前,你需要安装主题中用到的插件。
在 Gemfile
配置文件中加入如下几行:
gem "rouge"
gem "kramdown"
gem "jekyll-feed"
gem "jekyll-seo-tag"
gem "jemoji"
示例 (Gemfile):
# A sample Gemfile
source "https://rubygems.org"
group :jekyll_plugins do
gem "rouge"
gem "kramdown"
gem "jekyll-feed"
gem "jekyll-seo-tag"
gem "jemoji"
end
然后使用 bundle 执行安装:
$ bundle install
或者你也可以使用 gem install
命令手动下载安装各个插件。
之后将所需模板文件移至博客文件夹下,这一步请看对应的 安装配置。
但是这种方式不能方便的升级主题,当主题支持新的特性或者修复了某些 bug 的时候,你需要再次下载最新版本的主题包,解压使用最新的文件进行覆盖。
当然,这取决于你,这种方式也就相当于是把基于目前最新版本的主题当成是自己的模板主题来使用了。
Minimalism slogan: 『Simple is beautiful.』