<% for (const index in ctx.menuList) { %> <% if (ctx.menuList[index].display === undefined || !ctx.menuList[index].display) { continue } %>
  • <%= ctx.menuList[index].name %> <% if (ctx.menuList[index].children !== null) { %> <% } %> <% if (ctx.menuList[index].children !== null) { %>
      <% for (const childIndex in ctx.menuList[index].children) { %>
    • <%= ctx.menuList[index].children[childIndex].name %>
    • <% } %>
    <% } %>
  • <% } %>