<% if(setting.search){ %>
<% } %> <% if(is_home() || isChildPage){ %> <% const menuSetting = isChildPage ? page : theme; %> <% menuSetting.menu.forEach(function(e) { %> <% if (e.submenu) { %> <% e.submenu.forEach(function(e) { %> <% const childPath = page.path.replace('index.html', '') + e.config; %> <% const key = isChildPage?childPath:e.config; %> <% var menus = site.data && site.data[key] ? site.data[key] : menuSetting[e.config]; %> <%- partial('common/group.ejs', {e: e, menus: menus || []}); %> <% }) %> <% } else { %> <% const childPath = page.path.replace('index.html', '') + e.config; %> <% const key = isChildPage?childPath:e.config; %> <% var menus = site.data && site.data[key] ? site.data[key] : menuSetting[e.config]; %> <% console.log(page.path,childPath,key); %> <%- partial('common/group.ejs', {e: e, menus: menus || []}); %> <% } %> <% }) %> <% } %> <%- js(setting.js.footer) %>