mirror of https://github.com/istio/istio.io.git
1.5 KiB
1.5 KiB
title | overview | order | layout | type | toc | redirect_from | ||
---|---|---|---|---|---|---|---|---|
FAQ | Frequently Asked Questions about Istio. | 20 | help | markdown | false |
|
{% include home.html %}
You've got questions? We've got answers!
{% assign category_dirs = 'general,setup,security,mixer,traffic-management' %}
{% assign category_names = 'General,Setup,Security,Mixer,Traffic Management' %}
{% assign category_dirs = category_dirs | split: ',' %}
{% assign category_names = category_names | split: ',' %}
{% assign faqs = site.faq | sort: "order" %}
{% for cat in category_dirs %}
<div class="col-sm-6">
<div class="card">
<div class="card-header">
{{category_names[forloop.index0]}}
</div>
<div class="card-body">
{% for q in faqs %}
{% assign comp = q.path | split: '/' %}
{% assign qcat = comp[1] %}
{% if cat == qcat %}
{% assign name = q.path | downcase | split: '/' | last | remove: ".md" %}
<a href="{{qcat}}#{{name}}">{{q.title}}</a><br/>
{% endif %}
{% endfor %}
</div>
</div>
</div>
{% endfor %}
</div>