Sha256: 5429617d6d5e51fdd26aac6ed4f7b677c336b261cf5cb68aa8f9c129abed1ad7

Contents?: true

Size: 819 Bytes

Versions: 10

Compression:

Stored size: 819 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

10 entries across 10 versions & 1 rubygems

Version Path
alembic-jekyll-theme-3.0.1 _includes/nav-default.html
alembic-jekyll-theme-3.0.0 _includes/nav-default.html
alembic-jekyll-theme-2.3.1 _includes/nav-default.html
alembic-jekyll-theme-2.3 _includes/nav-default.html
alembic-jekyll-theme-2.2.5 _includes/nav-default.html
alembic-jekyll-theme-2.2.4 _includes/nav-default.html
alembic-jekyll-theme-2.2.3 _includes/nav-default.html
alembic-jekyll-theme-2.2.2 _includes/nav-default.html
alembic-jekyll-theme-2.2.1 _includes/nav-default.html
alembic-jekyll-theme-2.2.0 _includes/nav-default.html