{% for topic in site.data.topics %}

{{ topic.title }}

{% for question in topic.questions %}
{{ question.text }}
{% for candidate in site.data.candidates %}
{% include {{ candidate.slug }}/{{ question.slug }}.html %}
{% endfor %}
{% endfor %}
{% endfor %}