aboutsummaryrefslogtreecommitdiff
path: root/_plugins/datefmt.rb
blob: 7c2274f9383396bbee5d3e6e22656d4a02715545 (plain)
1
2
3
4
5
6
7
8
module DateFormatter
	def datefmt(input)
		return input.strftime("%F")
	end
end

Liquid::Template.register_filter(DateFormatter)