Sha256: 1b09e3d95bce650d787a328579b4e0a67302b05b51aa51be19dd82530a7fac86

Contents?: true

Size: 676 Bytes

Versions: 2

Compression:

Stored size: 676 Bytes

Contents

{% if site.options.navigation.nonweighted == true %}
  {% assign pages_list = site.pages %}
  {% for node in pages_list %}
    {% if node.title != null %}
      {% if node.layout == "page" %}
        <a href="{{ node.url | prepend: site.baseurl }}">{{ node.title }}</a>
      {% endif %}
    {% endif %}
  {% endfor %}
{% elsif site.options.navigation.weighted == true %}
  <nav>
    {% assign navigation_pages = site.html_pages | sort: 'weight' %}
    {% for p in navigation_pages %}
      {% if p.weight %}
        <a href="{{ p.url | prepend: site.baseurl }}" {% if p.url == page.url %} {% endif %}>{{ p.title }}</a>
      {% endif %}
    {% endfor %}
  </nav>
{% endif %}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
casjaysdev-jekyll-theme-0.2.6 _includes/themes/blank/navigation.html
casjaysdev-jekyll-theme-0.2.5 _includes/themes/blank/navigation.html