yet-another-blog/frontend/views/themes/default/ejs/author.ejs

34 lines
948 B
Plaintext

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="../css/author.css" />
<link rel="stylesheet" type="text/css" href="../css/generic.css" />
<title>Yet-Another-Blog</title>
</head>
<body>
<%- include("partials/header.ejs") %>
<div class="page">
<div class="page-center">
<div class="biography">
<div class="title"><%= post.title %></div>
<%- post.content %>
</div>
<div class="about">
<div class="profile-picture"><img src="" /></div>
<div class="displayname">DISPLAYNAME</div>
<div class="stat">Registered REGISTRATIONDATE</div>
<div class="stat">NUMPOSTS Posts</div>
<div class="sociallist">
<a class="link" href="#">Matrix</a>
</div>
</div>
</div>
</div>
<%- include("partials/footer.ejs") %>
</body>
</html>