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