Skip to content

Commit 4f9fb53

Browse files
authored
Update conferences.html (BlackPythonDevs#282)
Was breaking when no speakers were added
1 parent 9e1dd73 commit 4f9fb53

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

_includes/conferences.html

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ <h2>
88
{% if conference.summary != "_No response_" %}
99
{{ conference.summary | markdownify }}
1010
{% endif %}
11-
<h3>Speaking:</h3>
12-
{{ conference.speaking | markdownify }}
11+
{% if conference.speaking != "_No response_" %}
12+
<h3>Speaking:</h3>
13+
{{ conference.speaking | markdownify }}
14+
{% endif %}
1315
</div>
1416
{% endfor %}
1517
{% else %}

0 commit comments

Comments
 (0)