diff options
Diffstat (limited to 'template/profile.st')
| -rw-r--r-- | template/profile.st | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/template/profile.st b/template/profile.st index f66069e..6f44058 100644 --- a/template/profile.st +++ b/template/profile.st @@ -50,14 +50,14 @@ <br> <h3>contact info</h3> $if(contact)$ - <div id="contact" class="linkify">$contact$</div> + <div id="contact" class="linkify-text">$contact$</div> $else$ <img id="contact" src="/static/img/noinfo.png"> $endif$ <br> <h3>bio</h3> $if(bio)$ - <div id="bio" class="linkify">$bio$</div> + <div id="bio" class="linkify-text">$bio$</div> $else$ <img id="bio" src="/static/img/noinfo.png"> $endif$ @@ -90,7 +90,23 @@ style="border:none; width:500px; height:30px"></iframe> </div> + </div> + $if(dms)$ + <br /> + <div id="directmsgs"> + <h2>Messages</h2> + $dms: { dm | + <div class="directmsg"> + <b><a href="/$dm.nick$">$dm.nick$</a></b> + <img src="$dm.avatar$" size="20" /> + <span class="linkify-full">$dm.content$</span> </div> + <script> + var Recips = $recips$; + </script> + }$ + </div> + $endif$ </div> <div id="footerc"> |
