Compare commits

..

5 Commits

Author SHA1 Message Date
1d4e1a21b4 Update critical file(s) according to Chirpy v7.3.1
Some checks failed
Build and Deploy / build (push) Failing after 1m14s
Build and Deploy / deploy (push) Has been skipped
2025-07-26 12:25:29 +00:00
051518182c Update critical file(s) according to Chirpy v7.3.0
Some checks failed
Build and Deploy / build (push) Failing after 1m10s
Build and Deploy / deploy (push) Has been skipped
2025-05-18 13:20:07 +00:00
46e2bdfa6e Update critical file(s) according to Chirpy v7.2.4
Some checks failed
Build and Deploy / build (push) Failing after 35s
Build and Deploy / deploy (push) Has been skipped
2024-12-21 19:23:15 +00:00
1d4d35af85 Update critical file(s) according to Chirpy v7.2.3
Some checks failed
Build and Deploy / build (push) Failing after 36s
Build and Deploy / deploy (push) Has been skipped
2024-12-15 13:06:48 +00:00
aa0fd48ad0 Update critical file(s) according to Chirpy v7.2.2
Some checks failed
Build and Deploy / build (push) Failing after 4m22s
Build and Deploy / deploy (push) Has been skipped
2024-12-06 17:07:40 +00:00
5 changed files with 7 additions and 6 deletions

View File

@ -2,7 +2,7 @@
source "https://rubygems.org"
gem "jekyll-theme-chirpy", "~> 7.2", ">= 7.2.1"
gem "jekyll-theme-chirpy", "~> 7.3", ">= 7.3.1"
gem "html-proofer", "~> 5.0", group: :test

View File

@ -212,7 +212,8 @@ exclude:
- tools
- README.md
- LICENSE
- "*.js"
- purgecss.js
- "*.config.js"
- "package*.json"
jekyll-archives:

View File

@ -18,7 +18,7 @@ platforms:
#
# - type: Linkedin
# icon: "fab fa-linkedin"
# link: "https://www.linkedin.com/sharing/share-offsite/?url=URL"
# link: "https://www.linkedin.com/feed/?shareActive=true&shareUrl=URL"
#
# - type: Weibo
# icon: "fab fa-weibo"

View File

@ -4,10 +4,10 @@
Jekyll::Hooks.register :posts, :post_init do |post|
commit_num = `git rev-list --count HEAD "#{ post.path }"`.strip
commit_num = `git rev-list --count HEAD "#{ post.path }"`
if commit_num.to_i > 1
lastmod_date = `git log -1 --pretty="%ad" --date=iso "#{ post.path }"`.strip
lastmod_date = `git log -1 --pretty="%ad" --date=iso "#{ post.path }"`
post.data['last_modified_at'] = lastmod_date
end