Skip to content

Instantly share code, notes, and snippets.

@mdcpepper
Last active August 29, 2015 14:01
Show Gist options
  • Save mdcpepper/67c4cc18d70ce8b429c9 to your computer and use it in GitHub Desktop.
Save mdcpepper/67c4cc18d70ce8b429c9 to your computer and use it in GitHub Desktop.
{% set navElements = { 1: 'section', 2: 'article' } %}
{% nav entry in entries %}
{# fetch the HTML element matching the entry level #}
<{{ navElements[entry.level]|default('div') }}>
{{ entry.content }}
{% ifchildren %}
{% children %}
{% endifchildren %}
{# close it off with the same element #}
</{{ navElements[entry.level]|default('div') }}>
{% endnav %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment