diff options
| author | yo momma <shutup@oops.wtf> | 2026-02-04 18:52:20 +0000 |
|---|---|---|
| committer | yo momma <shutup@oops.wtf> | 2026-02-04 18:52:20 +0000 |
| commit | ae480c44c59a9e77ea279f2208dd7f932079e078 (patch) | |
| tree | be098491808cc88d6aa3790f5b6a20d4feb4aad8 /template/profile_dump.st | |
| parent | 8dd5a7b4e75ce418df5d75673304a8d14181c8f8 (diff) | |
Refactor templates: humps/hump variables
Diffstat (limited to 'template/profile_dump.st')
| -rwxr-xr-x | template/profile_dump.st | 14 |
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> |
