From f7f421dd3a1a0af1596719949b0024b37ccd0fe3 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Mon, 22 Jul 2024 17:39:38 -0400 Subject: Fix index blog list date format --- wruby.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wruby.rb') diff --git a/wruby.rb b/wruby.rb index 4ee60df..eba5912 100644 --- a/wruby.rb +++ b/wruby.rb @@ -62,7 +62,7 @@ def process_markdown_files(input_directory, output_directory, header_content, fo header = replace_title_placeholder(header_content, title) File.write(output_file, header + html_content + footer_content) - items << { title: title, date: date.to_time.utc, link: relative_path + '/', content: html_content } + items << { title: title, date: date, link: relative_path + '/', content: html_content } end items -- cgit v1.2.3-54-g00ecf