mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 03:25:04 +03:00
27 lines
No EOL
609 B
Text
27 lines
No EOL
609 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<%- include("extra/header", {title: "User list!" }) %>
|
|
|
|
<body>
|
|
|
|
<%- include("extra/navbar", {user}) %>
|
|
|
|
|
|
<h1>USERS:</h1>
|
|
<ul>
|
|
<% users.forEach(user=>{ %>
|
|
<li>
|
|
<h1><a href=<%=links[user.id] %> > <%= user.name %></a>
|
|
<img class="yuvarlak" src=<%=user.avatar %> alt=<%= user.name %>>
|
|
</h1>
|
|
</li>
|
|
<% }); %>
|
|
</ul>
|
|
|
|
|
|
|
|
<%- include("extra/footer") %>
|
|
</body>
|
|
|
|
</html> |