This file contains 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
{% macro list(items, class) %} | |
<ul class="{{class}}"> | |
{# Iterating over each direct items #} | |
{% for item in items %} | |
<li> | |
<a href="">{{item.name}}</a> | |
{# If an item has children #} | |
{% if item.children %} |