diff --git a/_layouts/event.html b/_layouts/event.html
index a8abb6c1..1696ff4b 100644
--- a/_layouts/event.html
+++ b/_layouts/event.html
@@ -14,23 +14,23 @@ layout: default
#{{page.number}}
{{page.date_text}}
- {% if post.title %}
- {{post.title}}
- {% endif %}
+ {% if post.location %}
+ {{post.location}}
+ {% endif %}
- {% if page.topics %}
- {% assign tags = (page.topics | split:",") %} {% for tag in tags %}
- - {{tag}}
- {% endfor%}
+ {% for talk in post.talks %}
+ {% if talk.topics %}
+ {% assign tags = (talk.topics | split:",") %}
+ {% for tag in tags | uniq %}
+ - {{tag}}
+ {% endfor %}
+ {% endif %}
+ {% endfor %}
- {% endif %} {% if page.location %}
- {{page.location}}
-
- {% endif %}
-
+