Created
May 6, 2014 13:15
-
-
Save matt-west/b655564156356ed9f58b to your computer and use it in GitHub Desktop.
Postach.io Categories Header Links
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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