Skip to content

Commit 0f6d214

Browse files
committed
Changes to fix timezone issues
1 parent 0289fe1 commit 0f6d214

6 files changed

+12
-4
lines changed

Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
source 'https://rubygems.org'
22

33
gem 'jekyll'
4+
gem 'tzinfo'
5+
gem 'tzinfo-data'
46

57
group :jekyll_plugins do
68
gem 'jekyll-sitemap'

Gemfile.lock

+6
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ GEM
6262
ffi (~> 1.9)
6363
terminal-table (2.0.0)
6464
unicode-display_width (~> 1.1, >= 1.1.1)
65+
tzinfo (2.0.4)
66+
concurrent-ruby (~> 1.0)
67+
tzinfo-data (1.2021.1)
68+
tzinfo (>= 1.0.0)
6569
unicode-display_width (1.7.0)
6670

6771
PLATFORMS
@@ -73,6 +77,8 @@ DEPENDENCIES
7377
jekyll-paginate
7478
jekyll-seo-tag
7579
jekyll-sitemap
80+
tzinfo
81+
tzinfo-data
7682

7783
BUNDLED WITH
7884
2.2.15

_includes/figure.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% capture imagePath %}{{ page.date | date: "%Y-%m-%d" }}-{{ page.title | slugify }}/{{ include.name }}{% endcapture %}
22
<figure class="figure">
33
<img src="/assets/posts/{{ imagePath }}" class="figure-img img-fluid rounded" alt="{{ include.caption }}">
4-
<figcaption class="figure-caption text-center">{{ include.caption }}</figcaption>
4+
<figcaption class="figure-caption text-center">{{ include.caption }} {{ page.date | date: "%Y-%m-%d" }}</figcaption>
55
</figure>

_posts/2010-12-30-line-constraint.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: 438
33
title: Line Constraint
4-
date: 2010-12-30 20:45:04 -0500
4+
date: 2010-12-30 00:45:04 -0500
55
author: William Bittle
66
layout: post
77
guid: http://www.codezealot.org/?p=348

_posts/2010-12-30-pulley-constraint.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: 376
33
title: Pulley Constraint
4-
date: 2010-12-30 13:32:42 -0500
4+
date: 2010-12-30 00:32:42 -0500
55
author: William Bittle
66
layout: post
77
guid: http://www.codezealot.org/?p=300

_posts/2011-11-17-contact-points-using-clipping.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: 394
33
title: Contact Points Using Clipping
4-
date: 2011-11-17 20:18:44 -0500
4+
date: 2011-11-17 00:18:44 -0500
55
author: William Bittle
66
layout: post
77
guid: http://www.codezealot.org/?p=394

0 commit comments

Comments
 (0)