WIP: Add OMV section
Update mkdocs material
This commit is contained in:
parent
845722b446
commit
a420660ad6
18 changed files with 159 additions and 47 deletions
37
theme/partials/nav.html
Normal file
37
theme/partials/nav.html
Normal file
|
@ -0,0 +1,37 @@
|
|||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="drawer">
|
||||
<span class="md-nav__button md-logo">
|
||||
{% if config.theme.logo.icon %}
|
||||
<i class="md-icon">{{ config.theme.logo.icon }}</i>
|
||||
{% else %}
|
||||
<img src="{{ base_url }}/{{ config.theme.logo }}" width="24" height="24">
|
||||
{% endif %}
|
||||
</span>
|
||||
{{ config.site_name }}
|
||||
</label>
|
||||
{% if config.repo_url %}
|
||||
<div class="md-nav__source">
|
||||
{% include "partials/source.html" %}
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="md-nav__source">
|
||||
<a href="/download" title="Go to Download" class="md-source">
|
||||
<div class="md-source__icon">
|
||||
<img src="/img/sd.png" style="position:relative; left:8px; top:8px">
|
||||
</div>
|
||||
<div class="md-source__repository">
|
||||
Download IMG
|
||||
<ul class="md-source__facts">
|
||||
<li class="md-source__fact">Latest build : {{ config.extra.sd_release.latest }}</li>
|
||||
</ul>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
{% for nav_item in nav %}
|
||||
{% set path = "nav-" + loop.index | string %}
|
||||
{% set level = 1 %}
|
||||
{% include "partials/nav-item.html" %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</nav>
|
Loading…
Add table
Add a link
Reference in a new issue