Created
October 27, 2014 14:55
-
-
Save zachinglis/72cd68149bb943e328ec to your computer and use it in GitHub Desktop.
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> | |
<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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment