initial commit of the hawkBit documentation (#343)

Signed-off-by: Michael Hirsch <michael.hirsch@bosch-si.com>
This commit is contained in:
Michael Hirsch
2016-11-14 15:21:29 +01:00
committed by GitHub
parent d536ec054a
commit 998ebd7c4e
88 changed files with 6422 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{% include base.html %}
{% for menu in include.level %}
{% if menu.sub != null %}
<li>
{{ menu.title }}
<ul class="nav navmenu-nav">
<!-- 2nd level -->
{% include submenu.html level=menu.sub %}
</ul>
</li>
{% else %}
<li >
{% if menu.href contains 'https://' or menu.href contains 'http://' %}
<a target="_blank" href="{{ menu.href }}">{{ menu.title }}</a>
{% else %}
<a href="{{base}}{{ menu.href }}">{{ menu.title }}</a>
{% endif %}
</li>
{% endif %}
{% endfor %}