Sha256: 7671b98ed5eb524a39c9ade83eb290ebc30661798f570477c0c20f23905af896

Contents?: true

Size: 887 Bytes

Versions: 6

Compression:

Stored size: 887 Bytes

Contents

<span class="sr-only">{{ site.data.strings.navigation | default:"Navigation" }}{{ site.data.strings.colon | default:":" }}</span>
<ul>
  {% assign pages = site.pages | where: "menu", true %}
  {% assign documents = site.documents | where: "menu", true %}
  {% assign nodes = pages | concat: documents | sort: "order" %}
  {% for node in nodes %}
    {% unless node.redirect_to %}
      <li>
        <a
          {% if forloop.first %}id="_navigation"{% endif %}
          href="{{ node.url | relative_url }}"
          class="sidebar-nav-item{% if page.url contains node.url %} active{% endif %}"
          {% if path.rel %}rel="{{ node.rel }}"{% endif %}
          >
          {{ node.title }}
        </a>
      </li>
    {% else %}
      <li>
        <a href="{{ node.redirect_to }}" class="sidebar-nav-item" >{{ node.title }}</a>
      </li>
    {% endunless %}
  {% endfor %}
</ul>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
jekyll-theme-hydejack-7.3.0 _includes/nav.html
jekyll-theme-hydejack-7.2.0 _includes/nav.html
jekyll-theme-hydejack-7.1.1 _includes/nav.html
jekyll-theme-hydejack-7.1.0 _includes/nav.html
jekyll-theme-hydejack-7.0.1 _includes/nav.html
jekyll-theme-hydejack-7.0.0 _includes/nav.html