<%- include('partials/htmlHead.ejs', {'page': page}) %>
<%- include('partials/valueChip.ejs', { 'title': 'Nodes in the Network', 'bgColor': "orange-dark", 'value': nodes.length, 'progressPercent': false, 'icon': 'server' }) %> <%- include('partials/valueChip.ejs', { 'title': 'Nodes Online', 'bgColor': "green", 'value': nodes.filter(node => node.online).length, 'progressPercent': false, 'icon': 'cpu-fill' }) %> <%- include('partials/valueChip.ejs', { 'title': 'Nodes with Discord Connections', 'bgColor': "blue-dark", 'value': connections.length, 'progressPercent': false, 'icon': 'gear-wide-connected' }) %>

Current Connections


<% for(const conn of connections) { %> <%- include('partials/connectionCard.ejs', {'connection': conn}) %> <%}%>

Online Nodes


<% for(const node of nodes.filter(node => node.online)) { %> <%- include('partials/nodeCard.ejs', {'node': node}) %> <%}%>

Offline Nodes


<% for(const node of nodes.filter(node => node.online == false)) { %> <%- include('partials/nodeCard.ejs', {'node': node}) %> <%}%>
<%- include('partials/bodyEnd.ejs') %> <%- include('partials/htmlFooter.ejs') %>