mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-10-31 19:25:04 +03:00
Added include to ejs files
This commit is contained in:
parent
6ca6d13078
commit
f5402363f9
16 changed files with 266 additions and 454 deletions
|
@ -210,3 +210,41 @@ img.logo {
|
|||
width: 266px;
|
||||
height: 75px;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
*****************************
|
||||
FOOTER
|
||||
*****************************
|
||||
*/
|
||||
.footer {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
background-color: var(--col-8);
|
||||
color: white;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer p {
|
||||
|
||||
font-size: 16px;
|
||||
color: white;
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
*****************************
|
||||
ADMIN TEXT
|
||||
*****************************
|
||||
*/
|
||||
.admin {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
background-color: var(--col-12);
|
||||
color: white;
|
||||
text-align: center;
|
||||
}
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
const admin = () => document.getElementById("admin").innerHTML =
|
||||
'<a href="/admin"> <h3> You are admin, and you can go your page </h3></a><br>';
|
||||
'<div class="admin"><a class="admin" href="/admin"> <h3> You are admin, and you can go your page </h3></a></div><hr>';
|
||||
|
|
|
@ -1,51 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Admin panel!</title>
|
||||
<meta name="description" content="Admin panel of Akf-forum!">
|
||||
<meta name="author" content="Akif9748">
|
||||
<link rel="icon" type="image/x-icon" href="/images/favicon.jpg">
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
<!-- Navbar: -->
|
||||
|
||||
|
||||
<a href="/"><img class="logo" src="/images/logo.jpg" alt="AKF-FORUM"></a>
|
||||
|
||||
|
||||
<div class="navbar" id="navbar">
|
||||
|
||||
<a href="/threads">THREADS</a>
|
||||
<a href="/users">USERS</a>
|
||||
<a href="/search">SEARCH</a>
|
||||
<a href="/threads/open/">OPEN THREAD</a>
|
||||
|
||||
<div style="float: right;" class="user" id="user">
|
||||
<a href=<%=user.getLink() %>>
|
||||
<h1>
|
||||
<%= user.name %><img class="yuvarlak" src=<%=user.avatar %> alt=<%= user.name %>>
|
||||
</h1>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
|
||||
<!-- Navbar end -->
|
||||
<%- include("extra/header", {title: "Admin panel!" }) %>
|
||||
|
||||
<body>
|
||||
|
||||
<%- include("extra/navbar", {user}) %>
|
||||
|
||||
<h1>Welcome to the admin panel of the forum, <%= user.name %>!</h1>
|
||||
|
||||
|
@ -58,9 +18,11 @@
|
|||
|
||||
<script>
|
||||
if (<%= user2.admin %>)
|
||||
alert("Making admin of '<%= user2.name %>'' is success");
|
||||
alert("Making admin of '<%= user2.name %>' is success");
|
||||
</script>
|
||||
<!-- This website is powered by AKF-Forum -->
|
||||
</body>
|
||||
|
||||
<%- include("extra/footer") %>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
|
||||
|
||||
<!-- This website is powered by AKF-Forum -->
|
||||
<%- include("extra/footer") %>
|
||||
</body>
|
||||
|
||||
</html>
|
4
views/extra/footer.ejs
Normal file
4
views/extra/footer.ejs
Normal file
|
@ -0,0 +1,4 @@
|
|||
<!-- This website is powered by AKF-Forum -->
|
||||
<div class="footer">
|
||||
<p>This website is powered by AKF-Forum</p>
|
||||
</div>
|
10
views/extra/header.ejs
Normal file
10
views/extra/header.ejs
Normal file
|
@ -0,0 +1,10 @@
|
|||
<head>
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title><%= title ?? "Akf-forum" %> </title>
|
||||
<meta name="description" content="Akf-forum!">
|
||||
<meta name="author" content="Akif9748">
|
||||
<link rel="icon" type="image/x-icon" href="/images/favicon.jpg">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
</head>
|
31
views/extra/navbar.ejs
Normal file
31
views/extra/navbar.ejs
Normal file
|
@ -0,0 +1,31 @@
|
|||
|
||||
<!-- Navbar: -->
|
||||
|
||||
<script src="/js/scripts.js"></script>
|
||||
|
||||
<div id="admin"></div>
|
||||
<script> if (<%= user.admin %>) admin(); </script>
|
||||
<a href="/"><img class="logo" src="/images/logo.jpg" alt="AKF-FORUM"></a>
|
||||
|
||||
<div class="navbar" id="navbar">
|
||||
|
||||
<a href="/threads">THREADS</a>
|
||||
<a href="/users">USERS</a>
|
||||
<a href="/search">SEARCH</a>
|
||||
<a href="/threads/open/">OPEN THREAD</a>
|
||||
|
||||
<div style="float: right;" class="user" id="user">
|
||||
<a href=<%=user.getLink() %>>
|
||||
<h1>
|
||||
<%= user.name %><img class="yuvarlak" src=<%=user.avatar %> alt=<%= user.name %>>
|
||||
</h1>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
|
||||
<!-- Navbar end -->
|
|
@ -1,53 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Main page!</title>
|
||||
<meta name="description" content="Main page of Akf-forum!">
|
||||
<meta name="author" content="Akif9748">
|
||||
<link rel="icon" type="image/x-icon" href="/images/favicon.jpg">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
<script src="/js/scripts.js"></script>
|
||||
</head>
|
||||
|
||||
|
||||
<%- include("extra/header", {title: "Main page!" }) %>
|
||||
<body>
|
||||
<div id="admin"></div>
|
||||
<script> if (<%= user.admin %>) admin(); </script>
|
||||
|
||||
|
||||
<!-- Navbar: -->
|
||||
|
||||
|
||||
<a href="/"><img class="logo" src="/images/logo.jpg" alt="AKF-FORUM"></a>
|
||||
|
||||
|
||||
<div class="navbar" id="navbar">
|
||||
|
||||
<a href="/threads">THREADS</a>
|
||||
<a href="/users">USERS</a>
|
||||
<a href="/search">SEARCH</a>
|
||||
<a href="/threads/open/">OPEN THREAD</a>
|
||||
|
||||
<div style="float: right;" class="user" id="user">
|
||||
<a href=<%=user.getLink() %>>
|
||||
<h1>
|
||||
<%= user.name %><img class="yuvarlak" src=<%=user.avatar %> alt=<%= user.name %>>
|
||||
</h1>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
|
||||
<!-- Navbar end -->
|
||||
|
||||
<%- include("extra/navbar", {user}) %>
|
||||
|
||||
|
||||
<h1>Welcome, <a href=<%=user.getLink() %>> <%= user.name %></a>
|
||||
|
@ -84,7 +41,8 @@
|
|||
|
||||
</ul>
|
||||
|
||||
<!-- This website is powered by AKF-Forum -->
|
||||
<%- include("extra/footer") %>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -1,17 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>LOGIN</title>
|
||||
<meta name="description" content="Login to Akf-forum!">
|
||||
<meta name="author" content="Akif9748">
|
||||
<link rel="icon" type="image/x-icon" href="/images/favicon.jpg">
|
||||
|
||||
</head>
|
||||
|
||||
<%- include("extra/header", {title: "Login page!" }) %>
|
||||
|
||||
<body>
|
||||
<!-- Navbar: -->
|
||||
|
@ -30,7 +20,7 @@
|
|||
<input type="submit" value="Login">
|
||||
</form>
|
||||
|
||||
<!-- This website is powered by AKF-Forum -->
|
||||
<%- include("extra/footer") %>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -1,53 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Open Thread</title>
|
||||
<meta name="description" content="Open thread in Akf-forum!">
|
||||
<meta name="author" content="Akif9748">
|
||||
<link rel="icon" type="image/x-icon" href="/images/favicon.jpg">
|
||||
<%- include("extra/header", {title: "Open Thread!" }) %>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<body>
|
||||
<script src="/js/scripts.js"></script>
|
||||
|
||||
<div id="admin"></div>
|
||||
<script> if (<%= user.admin %>) admin(); </script>
|
||||
|
||||
|
||||
<!-- Navbar: -->
|
||||
|
||||
|
||||
<a href="/"><img class="logo" src="/images/logo.jpg" alt="AKF-FORUM"></a>
|
||||
|
||||
|
||||
<div class="navbar" id="navbar">
|
||||
|
||||
<a href="/threads">THREADS</a>
|
||||
<a href="/users">USERS</a>
|
||||
<a href="/search">SEARCH</a>
|
||||
<a href="/threads/open/">OPEN THREAD</a>
|
||||
|
||||
<div style="float: right;" class="user" id="user">
|
||||
<a href=<%=user.getLink() %>>
|
||||
<h1>
|
||||
<%= user.name %><img class="yuvarlak" src=<%=user.avatar %> alt=<%= user.name %>>
|
||||
</h1>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
|
||||
<!-- Navbar end -->
|
||||
<%- include("extra/navbar", {user}) %>
|
||||
|
||||
|
||||
|
||||
|
@ -60,11 +18,11 @@
|
|||
<textarea rows="4" cols="50" name="content"></textarea>
|
||||
|
||||
<hr>
|
||||
<button class = "buyuk" type="submit">Open Thread!</button>
|
||||
<button class="buyuk" type="submit">Open Thread!</button>
|
||||
</form>
|
||||
|
||||
|
||||
<!-- This website is powered by AKF-Forum -->
|
||||
</body>
|
||||
<%- include("extra/footer") %>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -1,16 +1,8 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Register</title>
|
||||
<meta name="description" content="Register to Akf-forum!">
|
||||
<link rel="icon" type="image/x-icon" href="/images/favicon.jpg">
|
||||
|
||||
</head>
|
||||
|
||||
<%- include("extra/header", {title: "Register!" }) %>
|
||||
|
||||
<body>
|
||||
|
||||
|
@ -38,7 +30,7 @@
|
|||
<input type="submit" value="Register">
|
||||
</form>
|
||||
|
||||
<!-- This website is powered by AKF-Forum -->
|
||||
<%- include("extra/footer") %>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -1,40 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>
|
||||
<%= thread.title %>
|
||||
</title>
|
||||
<meta name="description" content="Thread page of Akf-forum!">
|
||||
<meta name="author" content="Akif9748">
|
||||
<link rel="icon" type="image/x-icon" href="/images/favicon.jpg">
|
||||
<%- include("extra/header", {title: "Main page!" }) %>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<%- include("extra/navbar", {user}) %>
|
||||
|
||||
<body>
|
||||
<script src="/js/scripts.js"></script>
|
||||
<div id="admin"></div>
|
||||
<script> if (<%= user.admin %>) admin(); </script>
|
||||
|
||||
<!-- Navbar: -->
|
||||
<a href="/"><img class="logo" src="/images/logo.jpg" alt="AKF-FORUM"></a>
|
||||
<div class="navbar" id="navbar">
|
||||
|
||||
<a href="/threads">THREADS</a>
|
||||
<a href="/users">USERS</a>
|
||||
<a href="/search">SEARCH</a>
|
||||
<a href="/threads/open/">OPEN THREAD</a>
|
||||
|
||||
<div style="float: right;" class="user" id="user">
|
||||
<a href = <%= user.getLink() %> > <h1> <%= user.name %><img class="yuvarlak" src=<%=user.avatar %> alt=<%= user.name %>> </h1> </a>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<!-- Navbar end -->
|
||||
|
||||
<h1 style="font-size: 35px;">
|
||||
<%= thread.title %>
|
||||
|
@ -46,7 +18,7 @@
|
|||
<br>
|
||||
<% messages.forEach(message=>{ %>
|
||||
|
||||
<div id= <%= "message-" + message.id %> style="border: 2px solid #444444; padding: 5px;">
|
||||
<div id=<%="message-" + message.id %> style="border: 2px solid #444444; padding: 5px;">
|
||||
<h2>
|
||||
<img class="yuvarlak" src=<%=message.author.avatar %> alt=<%= message.author.name %>>
|
||||
<a style=" color: #bcbcbc; " href=<%="/users/" + message.author.id %>> <%= message.author.name %></a>:
|
||||
|
@ -65,7 +37,8 @@
|
|||
<form style="text-align:right;" action="/message/react/<%= message.id %>" method="POST">
|
||||
|
||||
<h3 style="display:inline;">
|
||||
<%= Object.values(message.react).filter(Boolean).length - Object.values(message.react).filter(x=>!x).length %>
|
||||
<%= Object.values(message.react).filter(Boolean).length - Object.values(message.react).filter(x=>
|
||||
!x).length %>
|
||||
</h3>
|
||||
|
||||
|
||||
|
@ -93,7 +66,7 @@
|
|||
</form>
|
||||
|
||||
|
||||
<!-- This website is powered by AKF-Forum -->
|
||||
</body>
|
||||
<%- include("extra/footer") %>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -1,52 +1,26 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Threads!</title>
|
||||
<meta name="description" content="Threads' page of Akf-forum!">
|
||||
<meta name="author" content="Akif9748">
|
||||
<link rel="icon" type="image/x-icon" href="/images/favicon.jpg">
|
||||
<%- include("extra/header", {title: "Main page!" }) %>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<body>
|
||||
<script src="/js/scripts.js"></script>
|
||||
<div id="admin"></div>
|
||||
<script> if (<%= user.admin %>) admin(); </script>
|
||||
|
||||
<!-- Navbar: -->
|
||||
<a href="/"><img class="logo" src="/images/logo.jpg" alt="AKF-FORUM"></a>
|
||||
<div class="navbar" id="navbar">
|
||||
|
||||
<a href="/threads">THREADS</a>
|
||||
<a href="/users">USERS</a>
|
||||
<a href="/search">SEARCH</a>
|
||||
<a href="/threads/open/">OPEN THREAD</a>
|
||||
|
||||
<div style="float: right;" class="user" id="user">
|
||||
<a href = <%= user.getLink() %> > <h1> <%= user.name %><img class="yuvarlak" src=<%=user.avatar %> alt=<%= user.name %>> </h1> </a>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<!-- Navbar end -->
|
||||
<%- include("extra/navbar", {user}) %>
|
||||
|
||||
|
||||
<h1>Threads:</h1>
|
||||
<ul>
|
||||
<% threads.forEach(thread=>{ %>
|
||||
<li>
|
||||
<h1><a href=<%=links[threads.indexOf(thread)] %> > <%= thread.title %> by <%= thread.author.name %></a>
|
||||
<h1><a href=<%=links[threads.indexOf(thread)] %> > <%= thread.title %> by <%= thread.author.name
|
||||
%></a>
|
||||
</h1>
|
||||
</li>
|
||||
<% }); %>
|
||||
</ul>
|
||||
|
||||
|
||||
<!-- This website is powered by AKF-Forum -->
|
||||
</body>
|
||||
<%- include("extra/footer") %>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -1,40 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>
|
||||
<%= member.name %>
|
||||
</title>
|
||||
<meta name="description" content="Akf-forum user page!">
|
||||
<meta name="author" content="Akif9748">
|
||||
<link rel="icon" type="image/x-icon" href="/images/favicon.jpg">
|
||||
<%- include("extra/header", {title: "Main page!" }) %>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<body>
|
||||
<script src="/js/scripts.js"></script>
|
||||
<div id="admin"></div>
|
||||
<script> if (<%= user.admin %>) admin(); </script>
|
||||
|
||||
<!-- Navbar: -->
|
||||
<a href="/"><img class="logo" src="/images/logo.jpg" alt="AKF-FORUM"></a>
|
||||
<div class="navbar" id="navbar">
|
||||
|
||||
<a href="/threads">THREADS</a>
|
||||
<a href="/users">USERS</a>
|
||||
<a href="/search">SEARCH</a>
|
||||
<a href="/threads/open/">OPEN THREAD</a>
|
||||
|
||||
<div style="float: right;" class="user" id="user">
|
||||
<a href = <%= user.getLink() %> > <h1> <%= user.name %><img class="yuvarlak" src=<%=user.avatar %> alt=<%= user.name %>> </h1> </a>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<!-- Navbar end -->
|
||||
<%- include("extra/navbar", {user}) %>
|
||||
|
||||
|
||||
<ul>
|
||||
|
@ -81,7 +52,7 @@
|
|||
</form>
|
||||
<% }; %>
|
||||
|
||||
<!-- This website is powered by AKF-Forum -->
|
||||
</body>
|
||||
<%- include("extra/footer") %>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -1,37 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Edit profile</title>
|
||||
<meta name="description" content="Akf-forum!">
|
||||
<link rel="icon" type="image/x-icon" href="/images/favicon.jpg">
|
||||
<%- include("extra/header", {title: "Main page!" }) %>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<body>
|
||||
<script src="/js/scripts.js"></script>
|
||||
<div id="admin"></div>
|
||||
<script> if (<%= user.admin %>) admin(); </script>
|
||||
|
||||
<!-- Navbar: -->
|
||||
<a href="/"><img class="logo" src="/images/logo.jpg" alt="AKF-FORUM"></a>
|
||||
<div class="navbar" id="navbar">
|
||||
|
||||
<a href="/threads">THREADS</a>
|
||||
<a href="/users">USERS</a>
|
||||
<a href="/search">SEARCH</a>
|
||||
<a href="/threads/open/">OPEN THREAD</a>
|
||||
|
||||
<div style="float: right;" class="user" id="user">
|
||||
<a href = <%= user.getLink() %> > <h1> <%= user.name %><img class="yuvarlak" src=<%=user.avatar %> alt=<%= user.name %>> </h1> </a>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<!-- Navbar end -->
|
||||
<%- include("extra/navbar", {user}) %>
|
||||
|
||||
|
||||
<h1>This page is not ready.</h1>
|
||||
|
@ -48,6 +22,8 @@
|
|||
<input type="submit" value="Register">
|
||||
</form>
|
||||
-->
|
||||
</body>
|
||||
<%- include("extra/footer") %>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -1,43 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Users!</title>
|
||||
<meta name="description" content="Akf-forum users!">
|
||||
<meta name="author" content="Akif9748">
|
||||
<link rel="icon" type="image/x-icon" href="/images/favicon.jpg">
|
||||
<%- include("extra/header", {title: "Main page!" }) %>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<%- include("extra/navbar", {user}) %>
|
||||
|
||||
|
||||
<body>
|
||||
<script src="/js/scripts.js"></script>
|
||||
<div id="admin"></div>
|
||||
<script> if ( <%= user.admin %> ) admin(); </script>
|
||||
|
||||
<!-- Navbar: -->
|
||||
<a href="/"><img class="logo" src="/images/logo.jpg" alt="AKF-FORUM"></a>
|
||||
<div class="navbar" id="navbar">
|
||||
|
||||
<a href="/threads">THREADS</a>
|
||||
<a href="/users">USERS</a>
|
||||
<a href="/search">SEARCH</a>
|
||||
<a href="/threads/open/">OPEN THREAD</a>
|
||||
|
||||
<div style="float: right;" class="user" id="user">
|
||||
<a href = <%= user.getLink() %> > <h1> <%= user.name %><img class="yuvarlak" src=<%=user.avatar %> alt=<%= user.name %>> </h1> </a>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<!-- Navbar end -->
|
||||
<h1>USERS:</h1>
|
||||
<ul>
|
||||
<% users.forEach(user=>{ %>
|
||||
<li>
|
||||
<h1><a href= <%= links[user.id] %> > <%= user.name %></a>
|
||||
<h1><a href=<%=links[user.id] %> > <%= user.name %></a>
|
||||
<img class="yuvarlak" src=<%=user.avatar %> alt=<%= user.name %>>
|
||||
</h1>
|
||||
</li>
|
||||
|
@ -46,7 +21,7 @@
|
|||
|
||||
|
||||
|
||||
<!-- This website is powered by AKF-Forum -->
|
||||
</body>
|
||||
<%- include("extra/footer") %>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in a new issue