Sha256: 7cd6029a4d4e166015f68bd6fe563de2fd904e890adde67e1912a97a67fcd734

Contents?: true

Size: 833 Bytes

Versions: 16

Compression:

Stored size: 833 Bytes

Contents

<nav class="nav">
  <ul class="list list--nav">
    {% for item in site.html_pages %}
      {% unless item.title == false or item.url contains "/page" or item.url contains "/404.html" %}
        <li class="item  item--nav{% if item.url == page.url %}  item--current{% endif %}">

          {% if item.url contains '://' %}
            {% assign url = item.url %}
          {% else %}
            {% assign url = item.url | relative_url %}
          {% endif %}

          {% if item.collectionpage %}
            {% assign collectiondata = site.collections | where: "label", item.collectionpage | first %}
            <a href="{{ url }}">{{ collectiondata.title }}</a>
          {% else %}
            <a href="{{ url }}">{{ item.title }}</a>
          {% endif %}
        </li>
      {% endunless %}
    {% endfor %}
  </ul>
</nav>

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
alembic-jekyll-theme-4.1.0 _includes/nav-default.html
alembic-jekyll-theme-4.0.0 _includes/nav-default.html
alembic-jekyll-theme-3.1.0 _includes/nav-default.html
alembic-jekyll-theme-3.0.14 _includes/nav-default.html
alembic-jekyll-theme-3.0.13 _includes/nav-default.html
alembic-jekyll-theme-3.0.12 _includes/nav-default.html
alembic-jekyll-theme-3.0.11 _includes/nav-default.html
alembic-jekyll-theme-3.0.10 _includes/nav-default.html
alembic-jekyll-theme-3.0.9 _includes/nav-default.html
alembic-jekyll-theme-3.0.8 _includes/nav-default.html
alembic-jekyll-theme-3.0.7 _includes/nav-default.html
alembic-jekyll-theme-3.0.6 _includes/nav-default.html
alembic-jekyll-theme-3.0.5 _includes/nav-default.html
alembic-jekyll-theme-3.0.4 _includes/nav-default.html
alembic-jekyll-theme-3.0.3 _includes/nav-default.html
alembic-jekyll-theme-3.0.2 _includes/nav-default.html