-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33a53a2
commit 212a775
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "jekyll", "~> 4.0" | ||
gem "minima", "~> 2.0" | ||
|
||
# If you have any plugins, list them here | ||
gem "jekyll-feed", "~> 0.12" | ||
|
||
group :jekyll_plugins do | ||
gem "jekyll-sitemap" | ||
end | ||
|
||
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem | ||
gem "tzinfo-data", platforms: [:mingw, :x64_mingw, :mswin, :jruby] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Site settings | ||
title: My Blog # 博客标题 | ||
email: [email protected] # 博客联系邮箱 | ||
description: >- # 博客描述 | ||
This is my awesome blog. | ||
baseurl: "" # 基础 URL,例如 /blog,如果站点在子目录中 | ||
url: "http://jimmy.github.io" # 你的博客 URL | ||
|
||
# Build settings | ||
markdown: kramdown # 使用的 Markdown 引擎 | ||
theme: minima # 使用的 Jekyll 主题 | ||
plugins: | ||
- jekyll-feed # RSS 订阅插件 | ||
- jekyll-theme-cayman | ||
- jekyll-seo-tag | ||
|
||
# Social media settings | ||
twitter_username: your_twitter_handle | ||
github_username: your_github_handle | ||
|
||
# Other settings | ||
paginate: 5 # 分页,每页文章数 | ||
paginate_path: "/page:num/" |