abapGit/docs/_includes/navigation.html
Lars Hvam 9f548e2083
docs: add new setup category #1891 (#1958)
* docs: add new setup category #1891

* docs: fix is/are error (#1962)
2018-09-27 15:03:44 +02:00

62 lines
1.5 KiB
HTML

<!-- Navigation -->
<h3>Getting Started</h3>
<ul>
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "getting-started" %}
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3>Setup</h3>
<ul>
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "setup" %}
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3>Online Projects</h3>
<ul>
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "online projects" %}
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3>Offline Projects</h3>
<ul>
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "offline projects" %}
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3>Reference</h3>
<ul>
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "reference" %}
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3>Other</h3>
<ul>
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "other" %}
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<a href="/development">Development</a>