Skip to content

Instantly share code, notes, and snippets.

@iron-viper
Forked from tentacode/list.html.twig
Created October 27, 2016 10:34
Show Gist options
  • Save iron-viper/3df763c3660d45d60a148dc399a28528 to your computer and use it in GitHub Desktop.
Save iron-viper/3df763c3660d45d60a148dc399a28528 to your computer and use it in GitHub Desktop.
Twig recursive macro
{% macro recursiveCategory(category) %}
<li>
<h4><a href="{{ path(category.route, category.routeParams) }}">{{ category }}</a></h4>
{% if category.children|length %}
<ul>
{% for child in category.children %}
{{ _self.recursiveCategory(child) }}
{% endfor %}
</ul>
{% endif %}
</li>
{% endmacro %}
{% if categories %}
<div id="categories">
<ul>
{% for category in categories %}
{{ _self.recursiveCategory(category) }}
{% endfor %}
</ul>
</div>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment