mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 03:36:32 +08:00
28 lines
477 B
HTML
28 lines
477 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{% include head.html %}
|
|
<body>
|
|
{% include header.html %}
|
|
<div class="container wrap">
|
|
|
|
<div class="nav">
|
|
<h3>Development</h3>
|
|
<ul>
|
|
{% assign pages = site.development | sort: 'order' %}
|
|
{% for doc in pages %}
|
|
{% if doc.title != "Development" %}
|
|
<li><a href="{{ doc.url }}">{{ doc.title }}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<h1>{{ page.title }}</h1>
|
|
{{ content }}
|
|
</div>
|
|
</div>
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|