{% set tfFaq = get_section(path="faq/_index.md") %} {% set farmFaq = get_section(path="farmfaq/_index.md") %} {% set tftFaq = get_section(path="tftfaq/_index.md") %} {% if current_path == '/faq/' %}

{{ tfFaq.title }}

{% for page in tfFaq.pages %}
{{ page.title }}

{{ page.content | safe }}

{% endfor %}
{% elif current_path == '/farmfaq/' %}

{{ farmFaq.title }}

{% for page in farmFaq.pages %}
{{ page.title }}

{{ page.content | safe }}

{% endfor %}
{% elif current_path == '/tftfaq/' %}

{{ tftFaq.title }}

{% for page in tftFaq.pages %}
{{ page.title }}

{{ page.content | safe }}

{% endfor %}
{% endif %}