23 lines
466 B
Plaintext
23 lines
466 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<%- include('./include/header.ejs', { title: 'JLINC - Dashboard' }) %>
|
|
|
|
<% for (const type in config.appModules) { %>
|
|
<% if (config.appModules[type].internal) { continue; } %>
|
|
<%-
|
|
include('./include/app.ejs', {
|
|
app: config.appModules[type],
|
|
usage: usage ? usage[type] : null
|
|
})
|
|
%>
|
|
<% } %>
|
|
|
|
<%-
|
|
include('./include/agreements.ejs', {
|
|
app: config.appModules['core']
|
|
})
|
|
%>
|
|
|
|
<%- include('./include/footer.ejs') %>
|