Skip to content

Latest commit

 

History

History
40 lines (23 loc) · 804 Bytes

faq.md

File metadata and controls

40 lines (23 loc) · 804 Bytes

{% for section in site.sections %}

{% assign c = site.collections | where: "label", section.collection | first %}

{{ section.title }}

{% assign items = site[c.label] | sort: "question" %}

{% for item in items %}[Q-{{item.question}}: {{ item.title }}](#q-{{item.question | downcase}})
{% endfor %}

{% endfor %}

{% for section in site.sections %}

{% assign c = site.collections | where: "label", section.collection | first %}

{{ section.title }}

{% assign items = site[c.label] | sort: "question" %}

{% for item in items %}
Q-{{item.question}}:
{{ item.title }}
A-{{item.question}}:
{{item.content}}

 

{% endfor %}

{% endfor %}