You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
665 B
17 lines
665 B
6 years ago
|
<ul class="nav nav-pills nav-stacked">
|
||
|
<li><a href="{{ site.baseurl }}/">Home</a></li>
|
||
|
{% for section in site.sections %}
|
||
|
{% assign attr = section[0] %}
|
||
|
{% assign label = section[1] %}
|
||
|
|
||
|
{% for page in site.categories[attr] %}
|
||
|
{% if forloop.first %}
|
||
|
<li class="nav-header">{{ label }}</li>
|
||
|
{% endif %}
|
||
|
<li data-order="{{ page.order }}"><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></li>
|
||
|
{% endfor %}
|
||
|
{% endfor %}
|
||
|
<!-- List additional links. It is recommended to add a divider
|
||
|
e.g. <li class="divider"></li> first to break up the content. -->
|
||
|
</ul>
|