Skip to content

Instantly share code, notes, and snippets.

@agragregra
Created October 10, 2016 10:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save agragregra/17da377f9044e79a0275611cb27c6400 to your computer and use it in GitHub Desktop.
Save agragregra/17da377f9044e79a0275611cb27c6400 to your computer and use it in GitHub Desktop.
Jekyll Menu
<ul>{% for my_page in site.pages %}
{% if my_page.title %}
<li><a href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a></li>
{% endif %}
{% endfor %}</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment