<%- t('Core Libraries') %>

<% // Print libraries.forEach(function(library) { %> <% }); %>
<%- t('Name') %> <%- t('Description') %> <%- t('Author') %> <%- t('Version') %>
<%- library.name %> <%- library.about ? library.about.description : '' %> '><%- library.about ? library.about.author : '' %> <%- library.about ? library.about.version : '' %>

<% var split = {core:[],community:[]}; // Defaults for(var module in modules) { if(!split[modules[module].type]) split[modules[module].type] = []; // Add if doesn't exist (e.g. site) split[modules[module].type].push(modules[module]); } // Order for(var segment in split) { %>

<%- segment %> <%- t('Modules') %>

<% // Order the array split[segment].sort(function(a,b){return b.name < a.name }) // Print split[segment].forEach(function(module) { %> <% }); %>
<%- t('Name') %> <%- t('Description') %> <%- t('Author') %> <%- t('Version') %> <%- t('Enabled') %>
<%- module.name %> <%- module.about ? module.about.description : '' %> '><%- module.about ? module.about.author : '' %> <%- module.about ? module.about.version : '' %> <%- module.enabled ? 'Yes' : 'No' %>

<% } %>