Skip to content

Commit

Permalink
fix primary nav
Browse files Browse the repository at this point in the history
  • Loading branch information
caseyg committed Jun 30, 2016
1 parent 8ecf610 commit bc3163b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion primary.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<ul class="nav__list">
{% assign items = site.pages | sort:"position" %}
{% for item in items %}
{% if item.position and item.title != "Home" %}
{% if item.position and item.title != "home" %}
<li class="nav__item {% if page.url == item.url or page.parent == item.url %}nav__item--active{% endif %}"><a class="nav__link {{ item.slug }}" href="{{ item.url }}">{{ item.title }}</a></li>
{% endif %}
{% endfor %}
Expand Down

0 comments on commit bc3163b

Please sign in to comment.