--- layout: base ---
{{ content }} {% assign sections = page.sections %} {% assign questions = page.faq %} {% comment %} Loop through questions for each section {% endcomment %} {% for section in sections %}

{{section.title}}

{% for question in questions %} {% if question.section == section.title %}

{{question.question}}

{{question.answer}}

{% if question.links %} {% include 3-modules/link-list.html links=question.links class='faq-links' %} {% endif %}
{% endif %} {% endfor %} {% endfor %}