@@ -10,8 +10,7 @@ DTSTART:19700101T000000Z
1010TZOFFSETFROM :+0000
1111TZOFFSETTO :+0000
1212END :STANDARD
13- END :VTIMEZONE
14- {% for conf in site.data.conferences %}
13+ END :VTIMEZONE{% for conf in site.data.conferences %}
1514{%- if conf.cfp_ext -%}
1615 {%- assign cfp = conf.cfp_ext -%}
1716 {%- assign extended = "(extended)" -%}
@@ -20,7 +19,7 @@ END:VTIMEZONE
2019 {%- assign extended = "" -%}
2120{%- endif -%}
2221{%- capture desc -%}{{ conf.conference }} {{ conf.year }} - See: {{ conf.link }}{%- endcapture -%}
23- {%- if conf.workshop_deadline and conf.workshop_deadline != "TBA" - %}
22+ {% if conf.workshop_deadline and conf.workshop_deadline != "TBA" %}
2423BEGIN :VEVENT
2524SUMMARY :{{ conf.conference }} {{ conf.year }} Workshop Deadline
2625UID :{{ conf.conference | slugify: "latin" }}-{{ conf.year }}
[email protected] @@ -29,8 +28,8 @@ DTSTART:{{ conf.workshop_deadline | date: "%Y%m%dT%H%M%SZ" }}
2928{{ desc | prepend: "DESCRIPTION:" | normalize_whitespace | wrap_lines }}
3029ORGANIZER ;
CN=PythonDeadlines :mailto:
[email protected] 3130END :VEVENT
32- {%- endif - %}
33- {%- if conf.tutorial_deadline and conf.tutorial_deadline != "TBA" - %}
31+ {% endif %}
32+ {% if conf.tutorial_deadline and conf.tutorial_deadline != "TBA" %}
3433BEGIN :VEVENT
3534SUMMARY :{{ conf.conference }} {{ conf.year }} Tutorial Deadline
3635UID :{{ conf.conference | slugify: "latin" }}-{{ conf.year }}
[email protected] @@ -39,8 +38,8 @@ DTSTART:{{ conf.tutorial_deadline | date: "%Y%m%dT%H%M%SZ" }}
3938{{ desc | prepend: "DESCRIPTION:" | normalize_whitespace | wrap_lines }}
4039ORGANIZER ;
CN=PythonDeadlines :mailto:
[email protected] 4140END :VEVENT
42- {%- endif - %}
43- {%- if cfp != "TBA" and cfp != "None" and cfp != "Cancelled" - %}
41+ {% endif %}
42+ {% if cfp != "TBA" and cfp != "None" and cfp != "Cancelled" %}
4443BEGIN :VEVENT
4544SUMMARY :{{ conf.conference }} {{ conf.year }} Deadline {{ extended }}
4645UID :{{ conf.conference | slugify: "latin" }}-{{ conf.year }}@pythondeadlin.es
@@ -49,5 +48,5 @@ DTSTART:{{ cfp | date: "%Y%m%dT%H%M%SZ" }}
4948{{ desc | prepend: "DESCRIPTION:" | normalize_whitespace | wrap_lines }}
5049ORGANIZER ;
CN=PythonDeadlines :mailto:
[email protected] 5150END :VEVENT
52- {%- endif - %}{% endfor %}
51+ {% endif %}{% endfor %}
5352END :VCALENDAR
0 commit comments