Sha256: dd7a86fea91e9a88ff3c84caecdca2edd39cc37281edc6f2989e3673cc7253f4

Contents?: true

Size: 608 Bytes

Versions: 9

Compression:

Stored size: 608 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="{{ site.baseurl }}{{ node.url }}">{{ 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="{{ site.baseurl }}{{ p.url }}" {% if p.url == page.url %} {% endif %}>{{ p.title }}</a>
  {% endif %}
  {% endfor %}
</nav>

{% endif %}

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
casjaysdev-jekyll-theme-0.2.4 _includes/themes/blank/navigation.html
casjaysdev-jekyll-theme-0.2.3 _includes/themes/blank/navigation.html
casjaysdev-jekyll-theme-0.2.2 _includes/themes/blank/navigation.html
casjaysdev-jekyll-theme-0.2.1 _includes/themes/blank/navigation.html
casjaysdev-jekyll-theme-0.1.9 _includes/themes/blank/navigation.html
casjaysdev-jekyll-theme-0.1.8 _includes/themes/blank/navigation.html
casjaysdev-jekyll-theme-0.1.7 _includes/themes/blank/navigation.html
casjaysdev-jekyll-theme-0.1.6 _includes/themes/blank/navigation.html
casjaysdev-jekyll-theme-0.1.4 _includes/themes/blank/navigation.html