blob: 93987b406894341baa8b99c57b1fbcc710ba97c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<% include ../partials/header %>
<div class="subtitle">
<a href='/'>< Home</a> ·
<a href='/mail/'>Inbox</a>
</div>
<div class="bluebox" id="message">
<script class="template" type="text/html">
<a href="/profile/{{sender}}" class="av" style="background-image:url({{avatar}});"></a>
<span class="subject">{{subject}}</span>
<span class="sender">
sent by
<a href="/profile/{{sender}}">{{sender}}</a>
on {{date}} {{time}}
<span class='reply_link'>
·
<a href="/mail/reply/{{id}}">reply</a>
</span>
·
<a href='#' class='discard_link'>discard</a>
</span>
<div class="body">
<span class="contents">{{body}}</span>
</div>
</script>
</div>
<% include ../partials/footer %>
|