Skip to main content
Search
Search
Women
Men
Skin
We're serious about facts. Ask away.
Search
Explore FAQs
Categories
<% categories.forEach(function(category, index) { var categoryHasSections = category.sections && category.sections.length > 0; %>
<%= category.name %>
<% if (categoryHasSections) { %>
<% } %>
<%= partial('partial-article-list-sections', { id: 'category-' + category.id, parentId: '#sidebar-navigation', sections: category.sections, activeCategoryId: activeCategoryId, activeSectionId: activeSectionId, activeArticleId: activeArticleId, partial: partial }) %>
<% }); %>
<% function sectionHasContent(s) { if (s.articles && s.articles.length > 0) return true; if (!s.sections || s.sections.length === 0) return false; return s.sections.some(sectionHasContent); } if (sections.length) { %>
<% sections.forEach(function(section) { var visibleSubsections = section.sections ? section.sections.filter(sectionHasContent) : []; var hasVisibleContent = (section.articles && section.articles.length > 0) || visibleSubsections.length > 0; if (!hasVisibleContent) return; var branchHead = visibleSubsections.length > 0; var sectionLinkClass = 'flex-1 py-2'; if (branchHead) { sectionLinkClass += ' submenu-branch-head'; if (section.isActive) sectionLinkClass += ' submenu-branch-active'; } else if (section.isActive) { sectionLinkClass += ' submenu-parent-link'; } else { sectionLinkClass += ' text-inherit'; } %>
<%= section.name %>
<% if (visibleSubsections.length > 0) { %>
<% } %>
<%= partial('partial-article-list-sections', { id: 'section-' + section.id, parentId: '#' + id, sections: visibleSubsections, activeCategoryId: activeCategoryId, activeSectionId: activeSectionId, activeArticleId: activeArticleId, partial: partial }) %>
<% }); %>
<% } %>