hacks-guide-minimal-mistake.../_includes/nav_list

25 lines
896 B
Plaintext
Raw Normal View History

{% include base_path %}
{% assign navigation = site.data.navigation[page.sidebar.nav] %}
<nav class="nav__list">
2016-04-06 03:50:10 +02:00
{% if page.sidebar.title %}<header><h4>{{ page.sidebar.title }}</h4></header>{% endif %}
<ul>
{% for nav in navigation %}
<li><span class="nav__sub-title">{{ nav.title }}</span>
{% if nav.children != null %}
<ul>
{% for child in nav.children %}
2016-03-26 01:57:52 +01:00
{% assign nav_url = child.path | prepend: "/" | prepend: page.sidebar.nav | prepend: "/" | append: "/" %}
{% if nav_url == page.url %}
{% assign active = "active" %}
{% else %}
{% assign active = "" %}
{% endif %}
2016-03-26 01:57:52 +01:00
<li><a href="{{ nav_url | prepend: base_path }}" class="{{ active }}">{{ child.title }}</a></li>
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</ul>
</nav>