summaryrefslogtreecommitdiff
path: root/template/profile_dump.st
diff options
context:
space:
mode:
authoryo momma <shutup@oops.wtf>2026-02-04 18:52:20 +0000
committeryo momma <shutup@oops.wtf>2026-02-04 18:52:20 +0000
commitae480c44c59a9e77ea279f2208dd7f932079e078 (patch)
treebe098491808cc88d6aa3790f5b6a20d4feb4aad8 /template/profile_dump.st
parent8dd5a7b4e75ce418df5d75673304a8d14181c8f8 (diff)
Refactor templates: humps/hump variables
Diffstat (limited to 'template/profile_dump.st')
-rwxr-xr-xtemplate/profile_dump.st14
1 files changed, 7 insertions, 7 deletions
diff --git a/template/profile_dump.st b/template/profile_dump.st
index 23d8e6c..0fe4832 100755
--- a/template/profile_dump.st
+++ b/template/profile_dump.st
@@ -1,23 +1,23 @@
-<div class="logged-dump dump $if(dump.favorited)$favorite$endif$" id="message-$dump.message_id$" nick="$dump.nick$">
+<div class="logged-dump dump $if(hump.favorited)$favorite$endif$" id="message-$hump.message_id$" nick="$hump.nick$">
<div id="profiletxt">
- $dump.created_on$ -- in <b><a href="$dump.roomlink$">$dump.key$</a></b>
+ $hump.created_on$ -- in <b><a href="$hump.roomlink$">$hump.key$</a></b>
</div>
- <a href="/$dump.nick$">
+ <a href="/$hump.nick$">
<div id="logavatar">
-$if(dump.avatar)$
- <img height="50" width="50" src="$dump.avatar$" />
+$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(dump.favorited)$
+$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">$dump.content$</div>
+ <div class="content">$hump.content$</div>
<hr/>
$share_buttons()$
</div>