aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_includes/links.html
blob: 70e643b29e92f5bac29598d887f163a0daaf49c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{% for node in page_list %}
  {% if group == null or group == node.group %}
    {% if page.url == node.url %}
      <li class="active"><a href="{{ site.baseurl }}{{ node.url }}" class="active">{{ node.title }}</a></li>
    {% else %}
      <li><a href="{{ site.baseurl }}{{ node.url }}">{{ node.title }}</a></li>
    {% endif %}
  {% endif %}
{% endfor %}
{% assign page_list = nil %}
{% assign group = nil %}