15 lines
196 B
Markdown
15 lines
196 B
Markdown
|
FAQ
|
||
|
===
|
||
|
|
||
|
{% for entry in entries %}
|
||
|
- [{{entry.title}}](#{{entry.anchor}})
|
||
|
{% endfor %}
|
||
|
|
||
|
{% for entry in entries %}
|
||
|
<h2 name="{{entry.anchor}}">
|
||
|
{{entry.title}}
|
||
|
</h2>
|
||
|
|
||
|
{{entry.text}}
|
||
|
{% endfor %}
|