forked from magento/devdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlast-modified-at.rb
25 lines (22 loc) · 958 Bytes
/
last-modified-at.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true
#
# This custom plugin dynamically sets the 'last_modified_at' parameter
# for each page except 'redirect.html' pages.
# A value of the pararmeter is available as {{ page.last_modified_at }}.
# The parameter contains date and time of the last commit that changed
# the original file.
# For available date formats, refer to https://git-scm.com/docs/git-log#git-log---dateltformatgt
#
Jekyll::Hooks.register :pages, :post_init do |page|
# Do nothing in serving mode
next if page.site.config['serving']
# Process only files with 'md' and 'html' extensions
next unless File.extname(page.path).match?(/md|html/)
# Do nothing for redirects
next if page.name == 'redirect.html'
real_filepath = File.realpath page.path
# Read date of the last committ and assign it to last_modified_at parameter
# of the page.
page.data['last_modified_at'] =
`git log -1 --format=%cd --date=iso -- #{real_filepath}`.strip
end