diff options
author | Bradley Taunt <bt@btxx.org> | 2024-07-24 10:22:01 -0400 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-07-24 10:22:01 -0400 |
commit | c0404efaa880c3cd545c65ce7a05cb2562ce4103 (patch) | |
tree | d8cf06bfe13148188a72a817014ff63ae096c7ae | |
parent | 07aa8a0e7e259e6df438c3643dc18f0d6e0fa0c2 (diff) |
Force RSS time to set itself to midday, put original post date back
-rw-r--r-- | posts/futurama.md | 2 | ||||
-rw-r--r-- | wruby.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/posts/futurama.md b/posts/futurama.md index 71c7596..c858664 100644 --- a/posts/futurama.md +++ b/posts/futurama.md @@ -1,6 +1,6 @@ # Exploring Futurama: A Dive into the World of Tomorrow -2024-07-21 +2024-07-22 ## Introduction @@ -112,7 +112,7 @@ def generate_rss(posts, rss_file, author_name, site_name, site_url, posts_dir) maker.channel.link = site_url posts.each do |post| - date = Date.parse(post[:date].to_s).to_time + date = Date.parse(post[:date].to_s).to_time + 12*60*60 # Force time to midday item_link = "#{site_url}/#{posts_dir}/#{post[:link]}" item_title = post[:title] item_content = post[:content] |