Skip to content

Commit

Permalink
fix timestamp bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerard Casas Saez committed Nov 6, 2017
1 parent 062394c commit 77bf1cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calendars/events.ics
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ END:VTIMEZONE{% assign sorted = site.data.events | sort: 'date','last' %}
{% for post in sorted %}{% unless post.date == null %}BEGIN:VEVENT
DTSTART;TZID={{site.timezone}}:{{ post.date | date: "%Y%m%dT%H%M%S" }}
DTEND;TZID={{site.timezone}}:{{ post.end-date | date: "%Y%m%dT%H%M%S" }}
DTSTAMP;TZID=America/Denver:{{ post.date | date: "%Y%m%dT%H%M%S" }}
DTSTAMP;TZID={{site.timezone}}:{{ post.date | date: "%Y%m%dT%H%M%S" }}
UID:events-{{ post.date | date: "%Y%m%d-%H%M" }}@hackcu.org
LOCATION:{{ post.location }}
URL:{{post.url}}
Expand Down

0 comments on commit 77bf1cc

Please sign in to comment.