123456789101112131415161718192021222324252627282930313233343536373839 |
- {% comment %}
- {% assign pages_list = site.pages %}
- {% include JB/pages_list %}
- {% endcomment %}
- {% if site.JB.pages_list.provider == "custom" %}
- {% include custom/pages_list %}
- {% else %}
- {% for node in pages_list %}
- {% if node.title != null %}
- {% if group == null or group == node.group %}
- {% if page.url == node.url %}
- <li class="active"><a href="{{ BASE_PATH }}{{node.url}}" class="active">{{node.title}}</a></li>
- {% else %}
- <li><a href="{{ BASE_PATH }}{{node.url}}">{{node.title}}</a></li>
- {% endif %}
- {% endif %}
- {% endif %}
- {% endfor %}
- {% endif %}
- {% assign pages_list = nil %}
- {% assign group = nil %}
|