aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-07-22 17:40:28 -0400
committerBradley Taunt <bt@btxx.org>2024-07-22 17:40:28 -0400
commitbcbf074ca2e53762f547985e6978b10dc59095ad (patch)
tree8ca6a8a45f5be9c253deacd8e846ed01895a6fa4
parent0b68581a876ba0423f0825f5c8375a85ba03391a (diff)
Update blog post index page date formats
-rw-r--r--wruby.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/wruby.rb b/wruby.rb
index 1118169..feaa204 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