Skip to content

Instantly share code, notes, and snippets.

@matt-west
Created May 6, 2014 13:15
Show Gist options
  • Select an option

  • Save matt-west/b655564156356ed9f58b to your computer and use it in GitHub Desktop.

Select an option

Save matt-west/b655564156356ed9f58b to your computer and use it in GitHub Desktop.
Postach.io Categories Header Links
<div class="nav-collapse collapse">
<ul class="nav pull-right">
<li><a href="/">Blog</a></li>
<!-- Categories -->
<li><a href="/tag/design" class="{{ set_active('/tag/design') }}">Design</a></li>
<li><a href="/tag/web" class="{{ set_active('/tag/web') }}">Web</a></li>
<li><a href="/tag/ios" class="{{ set_active('/tag/ios') }}">iOS</a></li>
<li><a href="/tag/android" class="{{ set_active('/tag/android') }}">Android</a></li>
<!-- END Categories -->
{% if pages %}
{% for page in pages %}
<li><a href="{{ page.permalink }}" class="{{ set_active(page.permalink) }}">{{ page.title }}</a></li>
{% endfor %}
{% endif %}
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment