# https://articles.inqk.net/2020/02/10/jekyll-permalinks.html
# place in `_plugins` directory
module Jekyll
	module Drops
		class UrlDrop < Drop
			def build
				@context.registers[:site].time.strftime("%s")
			end
		end
	end
end