Skip to content

Instantly share code, notes, and snippets.

@joelbradbury
Created August 24, 2015 21:45
Show Gist options
  • Save joelbradbury/ee9a6ef2a295bc552e72 to your computer and use it in GitHub Desktop.
Save joelbradbury/ee9a6ef2a295bc552e72 to your computer and use it in GitHub Desktop.
{% header "Content-Type: application/json" %}
[
{% nav category in craft.categories.group('categories') %}
{
"name": "{{ category.title }}",
"url": "{{ category.url }}",
"loop": "{{ loop.index }}",
{% ifchildren %},
"children": [
{% children %}
]
{% endifchildren %}
}
{% if not loop.last %},{% endif %}
{% endnav %}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment