Skip to content

Instantly share code, notes, and snippets.

@sskylar
Created January 21, 2016 16:44
Show Gist options
  • Save sskylar/aad0d3197d65aae423b0 to your computer and use it in GitHub Desktop.
Save sskylar/aad0d3197d65aae423b0 to your computer and use it in GitHub Desktop.
Custom menus in Jekyll
header_menu:
About: "/about"
Departments: "/departments"
Contact: "/people"
<ul>
{% for item in site.header_menu %}
{% assign title = item.first %}
{% assign link = item.last %}
<li>
<a href="{{ link }}">
{{ title }}
</a>
</li>
{% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment