hacks-guide-minimal-mistake.../_includes/nav_list.html
Michael Rose 678aecdd61 Build navigation list include helper
- Update navigation.yml to support multiple navigations and levels
- Optional include navigation into left sidebar
2016-03-25 14:12:03 -04:00

24 lines
745 B
HTML

{% include base_path %}
{% assign navigation = site.data.navigation[page.sidebar.nav] %}
<nav>
<ul>
{% for nav in navigation %}
<li>{{ nav.title }}
{% if nav.children != null %}
<ul>
{% for child in nav.children %}
{% assign nav_url = child.path | prepend: "/" | prepend: page.sidebar.nav | prepend: "/" | append: "/" | prepend: base_path %}
{% if nav_url contains page.url %}
{% assign c = "current" %}
{% else %}
{% assign c = "" %}
{% endif %}
<li><a href="{{ nav_url }}" class="{{ c }}">{{ child.title }}</a></li>
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</ul>
</nav>