Skip to content

Commit

Permalink
remove timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
JesperDramsch committed Nov 15, 2024
1 parent 9bef5f4 commit c83583b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _layouts/calendar-deadlines.ics
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ UID:{{conf.conference | slugify: "latin"}}-{{conf.year}}-workshop
ORGANIZER:pythondeadlin.es
{{ desc | prepend: "DESCRIPTION:" | normalize_whitespace | wrap_lines }}
DTSTAMP:{{ site.time | date: "%Y%m%dT%H%M%SZ" }}
DTSTART;TZID=GMT{{ tz }}:{{ conf.workshop_deadline | date: "%Y%m%dT%H%M%S" }}
DTSTART;{{ conf.workshop_deadline | date: "%Y%m%dT%H%M%S" }}
END:VEVENT
{%- endif -%}
{% if conf.tutorial_deadline and conf.tutorial_deadline != "TBA" %}
Expand All @@ -39,7 +39,7 @@ UID:{{conf.conference | slugify: "latin"}}-{{conf.year}}-tutorial
ORGANIZER:pythondeadlin.es
{{ desc | prepend: "DESCRIPTION:" | normalize_whitespace | wrap_lines }}
DTSTAMP:{{ site.time | date: "%Y%m%dT%H%M%SZ" }}
DTSTART;TZID=GMT{{ tz }}:{{ conf.tutorial_deadline | date: "%Y%m%dT%H%M%S" }}
DTSTART;{{ conf.tutorial_deadline | date: "%Y%m%dT%H%M%S" }}
END:VEVENT
{%- endif -%}
{% if cfp != "TBA" and cfp != "None" and cfp != "Cancelled" %}
Expand All @@ -49,7 +49,7 @@ UID:{{conf.conference | slugify: "latin"}}-{{conf.year}}
ORGANIZER:pythondeadlin.es
{{ desc | prepend: "DESCRIPTION:" | normalize_whitespace | wrap_lines }}
DTSTAMP:{{ site.time | date: "%Y%m%dT%H%M%SZ" }}
DTSTART;TZID=GMT{{ tz }}:{{ cfp | date: "%Y%m%dT%H%M%S" }}
DTSTART;{{ cfp | date: "%Y%m%dT%H%M%S" }}
END:VEVENT
{%- endif -%}{% endfor %}
END:VCALENDAR

0 comments on commit c83583b

Please sign in to comment.