Sha256: 5c672bc22969e4fd9eff78a2162871d9446f2e211f37d955dba0eb241df20c84

Contents?: true

Size: 490 Bytes

Versions: 2

Compression:

Stored size: 490 Bytes

Contents

<nav class="main-nav">

  {% assign navigation_pages = site.html_pages | sort: 'weight' %}
  {% for p in navigation_pages | uniq %}
  {% if p.weight %}
  {% if p.url == page.url %}

  <a type="button" href="" class="sidebar-nav-item btn btn-outline-success disabled">{{ p.title }}
  </a>

  {% else %}
  <a type="button" href="{{ p.url | prepend: site.baseurl }}" class="sidebar-nav-item btn btn-primary active">{{ p.title
    }}

  </a>

  {% endif %}
  {% endif %}
  {% endfor %}

</nav>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
casjaysdev-jekyll-theme-0.1.7 _includes/nav/top.html
casjaysdev-jekyll-theme-0.1.6 _includes/nav/top.html