-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSinglePostTemplate.html
64 lines (64 loc) · 949 Bytes
/
SinglePostTemplate.html
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<html>
<head>
<meta name="viewport" content="width=device-width"/>
<style>
* {
font-family: Helvetica;
padding: 0px;
margin: 0px;
}
body {
/*width: 306px;*/
padding: 7px;
font-size: 13px;
}
h1.subject {
font-weight: bold;
font-size: 110%;
margin-bottom: 3px;
color: #204A6A;
}
div.userpic {
float: right;
margin: 0px 0px 7px 7px;
}
img.userpic {
max-height: 70px;
max-width: 70px;
}
img.icon {
width: 13px;
height: 13px;
vertical-align: middle;
}
div.poster, div.time {
color: #575757;
}
span.poster {
font-weight: bold;
}
div.post {
margin-top: 5px;
}
li {
margin-left: 30px;
}
div.time {
font-size: 13px;
}
</style>
</head>
<body>
@userpic@
<h1 class="subject">@lockicon@@subject@</h1>
<div class="poster">
<img class="icon" src="file://@usericon@" /> <span class="poster">@postername@</span> @journalname@
</div>
<div class="time">
@datetime@, @replycount@ replies
</div>
<div class="post">
@post@
</div>
</body>
</html>