- Help Center
- Orders
Orders
-
<% var activeCategory = categories.filter(function(category) { return category.isActive === true; })[0] || null; %>
<% if (activeCategory) { %>
<% activeCategory.sections.forEach(function(section) { %>
<% var visibleSubsections = section.sections.filter(function(subsection) { return subsection.articles && subsection.articles.length > 0; }); %>
<% if (visibleSubsections.length) { %>
-
<% visibleSubsections.forEach(function(subsection) { %>
<%= subsection.name %> <% var maxArticles = 10000; %> <% var articlesInSection = subsection.articles.slice(0, maxArticles); %><% }) %>
-
<% articlesInSection.forEach(function(article) { %>
- <%= article.title %> <% }) %> <% if (subsection.articles.length > maxArticles) { %>
- See all articles <% } %>
<% } %>
<% }) %>
<% } %>