Skip to content

Commit b942608

Browse files
committed
fix: default timezone
1 parent 56bee3f commit b942608

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_layouts/calendar-deadlines.ics

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ DTSTART;TZID=Etc/GMT{{ tz }}:{{ conf.workshop_deadline | date: "%Y%m%dT%H%M%S" }
1818
ORGANIZER:pythondeadlin.es
1919
{{ desc | prepend: "DESCRIPTION:" | normalize_whitespace | wrap_lines }}
2020
DTSTAMP:{{ site.time | date: "%Y%m%dT%H%M%SZ" }}
21-
DTSTART;TZID={{ conf.timezone }}:{{ conf.workshop_deadline | date: "%Y%m%dT%H%M%S" }}
21+
DTSTART;TZID={{ conf.timezone | default: "Etc/GMT+12" }}:{{ conf.workshop_deadline | date: "%Y%m%dT%H%M%S" }}
2222
{% endif %}END:VEVENT
2323
{%- endif -%}
2424
{% if conf.tutorial_deadline and conf.tutorial_deadline != "TBA" %}
@@ -33,7 +33,7 @@ DTSTART;TZID=Etc/GMT{{ tz }}:{{ conf.tutorial_deadline | date: "%Y%m%dT%H%M%S" }
3333
ORGANIZER:pythondeadlin.es
3434
{{ desc | prepend: "DESCRIPTION:" | normalize_whitespace | wrap_lines }}
3535
DTSTAMP:{{ site.time | date: "%Y%m%dT%H%M%SZ" }}
36-
DTSTART;TZID={{ conf.timezone }}:{{ conf.tutorial_deadline | date: "%Y%m%dT%H%M%S" }}
36+
DTSTART;TZID={{ conf.timezone | default: "Etc/GMT+12" }}:{{ conf.tutorial_deadline | date: "%Y%m%dT%H%M%S" }}
3737
{% endif %}END:VEVENT
3838
{%- endif -%}
3939
{% if cfp != "TBA" %}
@@ -48,7 +48,7 @@ DTSTART;TZID=Etc/GMT{{ tz }}:{{ cfp | date: "%Y%m%dT%H%M%S" }}
4848
ORGANIZER:pythondeadlin.es
4949
{{ desc | prepend: "DESCRIPTION:" | normalize_whitespace | wrap_lines }}
5050
DTSTAMP:{{ site.time | date: "%Y%m%dT%H%M%SZ" }}
51-
DTSTART;TZID={{ conf.timezone }}:{{ cfp | date: "%Y%m%dT%H%M%S" }}
51+
DTSTART;TZID={{ conf.timezone | default: "Etc/GMT+12" }}:{{ cfp | date: "%Y%m%dT%H%M%S" }}
5252
{% endif %}END:VEVENT
5353
{%- endif -%}{% endfor %}
5454
END:VCALENDAR

0 commit comments

Comments
 (0)