diff options
| author | Scott Ostler <scottbot9000@gmail.com> | 2011-02-13 01:13:47 -0500 |
|---|---|---|
| committer | Scott Ostler <scottbot9000@gmail.com> | 2011-02-13 01:13:47 -0500 |
| commit | 7c2d6edaa402efb084fe54b27b4603c351f979c8 (patch) | |
| tree | 9e48dcf585377a47cf517604966bc17e7a7bccc7 /template/rooms | |
| parent | 7c66f2232f667f1805b94507483299efa088291b (diff) | |
Add $ to template links
Diffstat (limited to 'template/rooms')
| -rw-r--r-- | template/rooms/chat.st | 6 | ||||
| -rw-r--r-- | template/rooms/mgmt.st | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/template/rooms/chat.st b/template/rooms/chat.st index f8829ca..63c8d11 100644 --- a/template/rooms/chat.st +++ b/template/rooms/chat.st @@ -83,9 +83,9 @@ </div> </div> - <link href="/static/css/pages.css" rel="stylesheet" type="text/css" media="screen" /> - <link href="/static/css/header.css" rel="stylesheet" type="text/css" media="screen" /> - <script type="text/javascript" src="/static/js/win.js"></script> + <link href="$domain$/static/css/pages.css" rel="stylesheet" type="text/css" media="screen" /> + <link href="$domain$/static/css/header.css" rel="stylesheet" type="text/css" media="screen" /> + <script type="text/javascript" src="$domain$/static/js/win.js"></script> <script type="text/javascript"> var topZ = 7; CreateDropdownWindow('', '500px', true, 'dis_welcome', 300, 70); diff --git a/template/rooms/mgmt.st b/template/rooms/mgmt.st index dc7060b..b8d4985 100644 --- a/template/rooms/mgmt.st +++ b/template/rooms/mgmt.st @@ -78,19 +78,19 @@ window.location = "http://dump.fm/error/ie"; <div align="center"> <img style="visibility:hidden;width:0px;height:0px;" border=0 width=0 height=0 /> <a class="img_roll" href="$domain$"></a> - <span class="fulltxt"> <a href="http://dump.fm/m/mgmtfull">View in fullscreen!</a></span> + <span class="fulltxt"> <a href="$domain$/m/mgmtfull">View in fullscreen!</a></span> </div> </div> <div id="userList"> $users: { u | - <div class="username"><a href="/$u.nick$" target="_blank"> + <div class="username"><a href="$domain$/$u.nick$" target="_blank"> $u.score_ent$ $if(u.avatar)$ <img src="$u.avatar$" width="50" height="50"> $else$ - <img src="/static/img/noinfo.png"> + <img src="$domain$/static/img/noinfo.png"> $endif$ $u.nick$</a><br> </div> @@ -103,9 +103,9 @@ window.location = "http://dump.fm/error/ie"; <span class="nick"> <b><a href="$domain$/$m.nick$" target="_blank">$m.nick$</a></b> $if(m.favorited)$ - <img src="/static/img/thumbs/chatheartover.gif" class="chat-thumb" onclick="Tag.favorite(this)"> + <img src="$domain$/static/img/thumbs/chatheartover.gif" class="chat-thumb" onclick="Tag.favorite(this)"> $else$ - <img src="/static/img/thumbs/smallheart.gif" class="chat-thumb" onclick="Tag.favorite(this)"> + <img src="$domain$/static/img/thumbs/smallheart.gif" class="chat-thumb" onclick="Tag.favorite(this)"> $endif$ </span> <span class="content">$m.content$</span> |
