blob: 554c760ed45fd07dcafc5903ff1caf36ae6ce104 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<div class="logged-hump hump $if(hump.favorited)$favorite$endif$" id="message-$hump.message_id$" nick="$hump.nick$">
<div id="profiletxt">
$hump.created_on$ -- in <b><a href="$hump.roomlink$">$hump.key$</a></b>
</div>
<a href="/$hump.nick$">
<div id="logavatar">
$if(hump.avatar)$
<img height="50" width="50" src="$hump.avatar$" />
$else$
<img height="50" width="50" src="/static/img/noinfo.png">
$endif$
</div></a>
<!--
$if(hump.favorited)$
<img src="/static/img/thumbs/heartover.gif" class="thumb favorite" onclick="Tag.favorite(this)">
$else$
<img src="/static/img/thumbs/heart.gif" class="thumb" onclick="Tag.favorite(this)">
$endif$
-->
<div class="content">$hump.content$</div>
<hr/>
$share_buttons()$
</div>
|