Skip to content

Instantly share code, notes, and snippets.

@cherihung
Last active June 25, 2017 02:25
Show Gist options
  • Save cherihung/bbaf486e7579ce1c922f621e8a10ceca to your computer and use it in GitHub Desktop.
Save cherihung/bbaf486e7579ce1c922f621e8a10ceca to your computer and use it in GitHub Desktop.
for jekyll templates - determine if item in menu is the current one navigated to
{% for item in sorted_items %}
{% assign current = nil %}
{% if page.id == item.url %}
{% assign current = 'currentItem' %}
{% endif %}
<li class="{{current}}"><a href="{{item.url}}"><img src="{{item.imageId}}.jpg" /></a></li>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment