{% set paddingLeft = 30 + (18 * (depth - 1)) %}
{{ folder.name }}
{% set children = folder.getChildren() %}
{% if children is not empty %}
{% for child in children %}
{% if child %}
{% include 'assets/_nav_folder' with { folder: child, depth: (depth + 1) } only %}
{% endif %}
{% endfor %}
{% endif %}