Skip to content

Commit a314a6a

Browse files
committed
whitespace
1 parent 4978c41 commit a314a6a

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

_layouts/calendar-deadlines.ics

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ DTSTART:19700101T000000Z
1010
TZOFFSETFROM:+0000
1111
TZOFFSETTO:+0000
1212
END: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" %}
2423
BEGIN:VEVENT
2524
SUMMARY:{{ conf.conference }} {{ conf.year }} Workshop Deadline
2625
UID:{{ 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 }}
3029
ORGANIZER;CN=PythonDeadlines:mailto:[email protected]
3130
END: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" %}
3433
BEGIN:VEVENT
3534
SUMMARY:{{ conf.conference }} {{ conf.year }} Tutorial Deadline
3635
UID:{{ 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 }}
4039
ORGANIZER;CN=PythonDeadlines:mailto:[email protected]
4140
END: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" %}
4443
BEGIN:VEVENT
4544
SUMMARY:{{ conf.conference }} {{ conf.year }} Deadline {{ extended }}
4645
UID:{{ 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 }}
5049
ORGANIZER;CN=PythonDeadlines:mailto:[email protected]
5150
END:VEVENT
52-
{%- endif -%}{% endfor %}
51+
{% endif %}{% endfor %}
5352
END:VCALENDAR

0 commit comments

Comments
 (0)