Sha256: 73f30e99ab9bed2d9c3d77f857e67f0890f105075469dc4673197d1de83e3d13

Contents?: true

Size: 896 Bytes

Versions: 10

Compression:

Stored size: 896 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 external" >{{ node.title }}</a>
      </li>
    {% endunless %}
  {% endfor %}
</ul>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
jekyll-theme-hydejack-8.2.0 _includes/body/nav.html
jekyll-theme-hydejack-8.1.1 _includes/body/nav.html
jekyll-theme-hydejack-8.1.0 _includes/body/nav.html
jekyll-theme-hydejack-8.0.0 _includes/body/nav.html
jekyll-theme-hydejack-7.5.2 _includes/nav.html
jekyll-theme-hydejack-7.5.1 _includes/nav.html
jekyll-theme-hydejack-7.5.0 _includes/nav.html
jekyll-theme-hydejack-7.4.2 _includes/nav.html
jekyll-theme-hydejack-7.4.1 _includes/nav.html
jekyll-theme-hydejack-7.4.0 _includes/nav.html