blob: 9da706c0e4eb99bc2d52c2cf2dfbd7342d1e9ea5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<%- include('header', { title: who.name }) %>
<style>
.logo { width: 80px; height: 80px; }
</style>
<img class="logo" src="<%= who.avatar %>" width="80" height="80">
<% if (who.about) { %>
<p style="white-space:pre-wrap;font-style:italic"><%= who.about %></p>
<% } else { %>
<br clear="left">
<% } %>
<p>
Member since <%= who.ctime %>.
<p>
Was last seen <%= who.atime %>.
<% if (user) { %>
<p>
<a href="/message/send/<%- who.name %>">Send message</a>
<% } %>
|