mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-04 19:10:56 -04:00
20 lines
506 B
Text
20 lines
506 B
Text
<%- include("header") %>
|
|
|
|
<div class="full-page container center-horizontal">
|
|
<div class="container">
|
|
<h1 class="username"><%= user.username %></h1>
|
|
<% if(currentUser.user_id === user.user_id ) { %>
|
|
<p>This is your profile page.</p>
|
|
<% }; %>
|
|
</div>
|
|
<div class="container">
|
|
<h2><%= user.username %>'s <%= totalPosts %> post(s): </h2>
|
|
<% allPosts.forEach((post) => { %>
|
|
<div class="container">
|
|
<p>"<%= post.message %>"</p>
|
|
</div>
|
|
<% }); %>
|
|
</div>
|
|
|
|
</div>
|
|
<%- include("footer") %>
|