blob: 8fd1d089b2f7d7fd36834a83d091d1a09f1694dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<%- include('header', { title: who.name }) %>
<img class="avatar" 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>
Last seen <%= who.atime %>.
<% if (user) { %>
<p>
<a href="/message/send/<%- who.name %>">Send message</a>
<% } %>
|