mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +08:00
52 lines
1.3 KiB
HTML
52 lines
1.3 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>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> |