14 lines
428 B
Plaintext
14 lines
428 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="<%= config.charset %>">
|
|
<head>
|
|
<%- include("../partials/head") %>
|
|
</head>
|
|
<body>
|
|
<% for (let userID = 0; userID < users.length; userID++) { %>
|
|
<% if (users[userID]["deleted"] != true) { %>
|
|
<a href="<%= config.site_url %>/user/<%= users[userID]["username"] %>"><%= users[userID]["username"] %></a><br/>
|
|
<% }; %>
|
|
<% }; %>
|
|
</body>
|
|
</html>
|