abapGit/docs/_includes/navigation.html
2017-05-20 14:37:25 +03:00

35 lines
925 B
HTML

<!-- Navigation -->
{% for section in site.data.navigation %}
<div class="nav-section">
{% if section.file %}
<a href="{{ section.file }}.html">
{% endif %}
<b>{{ section.title }}</b>
{% if section.file %}
</a>
{% endif %}
<ul>
{% for item in section.items %}
<li>
{% if item.file %}
<a href="{{ item.file }}.html">
{% endif %}
{{ item.title }}
{% if item.file %}
</a>
{% endif %}
{% if item.subitems %}
<ul>
{% for subitem in item.subitems %}
<li>
<a href="{{ subitem.file }}.html">{{ subitem.title }}</a>
</li>
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
{% endfor %}