Skip to content

Instantly share code, notes, and snippets.

@zachinglis
Created October 27, 2014 14:55
Show Gist options
  • Save zachinglis/72cd68149bb943e328ec to your computer and use it in GitHub Desktop.
Save zachinglis/72cd68149bb943e328ec to your computer and use it in GitHub Desktop.
<div>
<ul>
{% for item in site.data.navigation.navsecondary %}
<li>{{ item.title }}</li>
{% if item.subnav %}
<!-- This appears fine -->
{% for subitem in site.data.navigation.navsecondary.subnav %}
{{ subnav.title }}
<!-- Nothing coming out here though -->
{% endfor %}
{% endif %}
{% endfor %}
</ul>
</div>
navprimary:
- title: Home
url: /
- title: Blog
url: /blog/
navsecondary:
- title: Getting Started
url: /getting-started/
- title: Templating
url: /templating/
subnav:
- title: Twig
url: /templating/twig/
- title: Twig
url: /templating/twig/
- title: Twig
url: /templating/twig/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment