mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 03:25:04 +03:00
24 lines
558 B
Text
24 lines
558 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<%- include("extra/meta", {title: "User list!" }) %>
|
|
|
|
|
|
<body>
|
|
<link rel="stylesheet" href="/css/users.css" />
|
|
|
|
<%- include("extra/navbar") %>
|
|
|
|
<div class="users">
|
|
<% users.forEach(user=>{ %>
|
|
<div class="user-box">
|
|
<img src="<%=user.avatar %>" class="user-box-img">
|
|
<div class="user-box-title"> <a href="<%= user.getLink() %>">
|
|
<% if (user.deleted) { %> <span style="color: RED;">[DELETED]</span><% } %>
|
|
<%= user.name %></a></div>
|
|
</div>
|
|
<% }); %>
|
|
|
|
</div>
|
|
</body>
|
|
|