@@ -11,7 +11,7 @@ TZOFFSETFROM:+0000
1111TZOFFSETTO :+0000
1212END :STANDARD
1313END :VTIMEZONE
14- {% for conf in site.data.conferences %}
14+ {%- for conf in site.data.conferences %}
1515{%- if conf.cfp_ext -%}
1616 {%- assign cfp = conf.cfp_ext -%}
1717 {%- assign extended = "(extended)" -%}
@@ -20,7 +20,7 @@ END:VTIMEZONE
2020 {%- assign extended = "" -%}
2121{%- endif -%}
2222{%- capture desc -%}<a href="{{conf.link}}">{{ conf.conference }} {{ conf.year }}</a> found on <a href="https://pythondeadlin.es">PythonDeadlin.es</a>.{%- endcapture -%}
23- {%- if conf.workshop_deadline and conf.workshop_deadline != "TBA" - %}
23+ {%- if conf.workshop_deadline and conf.workshop_deadline != "TBA" %}
2424BEGIN :VEVENT
2525SUMMARY :{{ conf.conference }} {{ conf.year }} Workshop Deadline
2626UID :{{ conf.conference | slugify: "latin" }}-{{ conf.year }}
[email protected] @@ -29,8 +29,8 @@ DTSTART:{{ conf.workshop_deadline | to_utc: conf.timezone }}
2929{{ desc | prepend: "DESCRIPTION:" | normalize_whitespace | wrap_lines }}
3030ORGANIZER ;
CN=PythonDeadlines :mailto:
[email protected] 3131END :VEVENT
32- {%- endif - %}
33- {%- if conf.tutorial_deadline and conf.tutorial_deadline != "TBA" - %}
32+ {%- endif %}
33+ {%- if conf.tutorial_deadline and conf.tutorial_deadline != "TBA" %}
3434BEGIN :VEVENT
3535SUMMARY :{{ conf.conference }} {{ conf.year }} Tutorial Deadline
3636UID :{{ conf.conference | slugify: "latin" }}-{{ conf.year }}
[email protected] @@ -39,8 +39,8 @@ DTSTART:{{ conf.tutorial_deadline | to_utc: conf.timezone }}
3939{{ desc | prepend: "DESCRIPTION:" | normalize_whitespace | wrap_lines }}
4040ORGANIZER ;
CN=PythonDeadlines :mailto:
[email protected] 4141END :VEVENT
42- {%- endif - %}
43- {%- if cfp != "TBA" and cfp != "None" and cfp != "Cancelled" - %}
42+ {%- endif %}
43+ {%- if cfp != "TBA" and cfp != "None" and cfp != "Cancelled" %}
4444BEGIN :VEVENT
4545SUMMARY :{{ conf.conference }} {{ conf.year }} Deadline {{ extended }}
4646UID :{{ conf.conference | slugify: "latin" }}-{{ conf.year }}@pythondeadlin.es
@@ -49,5 +49,6 @@ DTSTART:{{ cfp | to_utc: conf.timezone }}
4949{{ desc | prepend: "DESCRIPTION:" | normalize_whitespace | wrap_lines }}
5050ORGANIZER ;
CN=PythonDeadlines :mailto:
[email protected] 5151END :VEVENT
52- {%- endif -%}{% endfor %}
52+ {%- endif %}
53+ {%- endfor %}
5354END :VCALENDAR
0 commit comments