Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
silverfox07 committed Jul 18, 2024
1 parent 33a53a2 commit 212a775
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Gemfile
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]
23 changes: 23 additions & 0 deletions _config.yml
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/"

0 comments on commit 212a775

Please sign in to comment.