Skip to main content
Toggle navigation menu
Back to website
Submit a request
Sign in
Our Platform. Your Vision.
Search our knowledge base or browse content below
Search
Categories
<% categories.forEach(function(category, index) { %>
<%= category.name %>
<%= partial('partial-article-list-sections', { id: 'category-' + category.id, parentId: '#sidebar-navigation', sections: category.sections, activeCategoryId: activeCategoryId, activeSectionId: activeSectionId, activeArticleId: activeArticleId, partial: partial }) %>
<% }); %>
<% if (sections.length) { %>
<% sections.forEach(function(section) { %>
<%= section.name %>
<%= partial('partial-article-list-sections', { id: 'section-' + section.id, parentId: '#' + id, sections: section.sections, activeCategoryId: activeCategoryId, activeSectionId: activeSectionId, activeArticleId: activeArticleId, partial: partial }) %> <% if (section.articles.length) { %>
<% section.articles.forEach(function(article) { %>
<%= article.title %>
<% }); %>
<% } %>
<% }); %>
<% } %>
<% var getColumnClasses = function(numberColumns) { var classNames = 'col-12'; if (numberColumns >= 2) classNames += ' md:col-6'; if (numberColumns >= 3) classNames += ' lg:col-4'; if (numberColumns >= 4) classNames += ' xl:col-3'; return classNames; } %>
<% (categories.length > 1 ? categories : sections).forEach(function(block, index) { // Check if block.name matches one of the desired categories if (['Getting Started', 'Hardware', "What's New"].includes(block.name)) { %>
<% if (block.name === "Getting Started") { %>
<% } else if (block.name === "Hardware") { %>
<% } else if (block.name === "What's New") { %>
<% } %>
<%= block.name %>
<% if (block.description) { %>
<%= block.description %>
<% } %> <% if (block.sections && block.sections.length > 0) { %>
<% block.sections.forEach(function(section) { %>
<%= section.name %>
<% }) %>
<% } %>
<% } }) %>
<% var getColumnClasses = function(columnNumber) { var classNames = 'col-12'; if (columnNumber >= 2) classNames += ' md:col-6'; if (columnNumber >= 3) classNames += ' lg:col-4'; if (columnNumber >= 4) classNames += ' xl:col-3'; return classNames; } %> <% if (articles.length) { %>
<% articles.forEach(function(article) { %>
<%= article.title %>
<% if (article.promoted) { %>
Promoted article
<% } %>
<% }) %>
<% } %>