<% children.forEach(function(child, index) { %>
<% var isActive = initial === index %>
<% if (child.title.includes("FAQ")) { %>
<%= child.title.substring(4) %>
<% } else if (child.title.includes("Troubleshoot")) { %>
<%= child.title.substring(13) %>
<% } else { %>
<%= child.title %>
<% } %>
<% }) %>
<% } %>