Skip to main content
<% categories.forEach(function(category, index) { %>
-
<% if (category.sections.length) { %>
<%= partial('category-list-sections', {
id: 'category-' + category.id,
parentId: '#category-list',
sections: category.sections,
activeCategoryId: activeArticleId,
activeSectionId: activeArticleId,
activeArticleId: activeArticleId,
partial: partial
}) %>
<% } %>
<% }); %>
<% if (sections.length) { %>
<% sections.forEach(function(section) { %>
-
<% if (section.sections.length) { %>
<%= partial('category-list-sections', {
id: 'section-' + section.id,
parentId: '#' + id,
sections: section.sections,
activeCategoryId: activeArticleId,
activeSectionId: activeArticleId,
activeArticleId: activeArticleId,
partial: partial
}) %>
<% } %>
<% if (section.articles.length) { %>
<% } %>
<% }); %>
<% } %>