diff options
Diffstat (limited to 'template')
| -rwxr-xr-x | template/chat.st | 2 | ||||
| -rwxr-xr-x | template/log.st | 5 | ||||
| -rwxr-xr-x | template/logged_dump.st | 2 | ||||
| -rwxr-xr-x | template/profile.st | 3 |
4 files changed, 7 insertions, 5 deletions
diff --git a/template/chat.st b/template/chat.st index 2c0f15f..9122c93 100755 --- a/template/chat.st +++ b/template/chat.st @@ -49,7 +49,7 @@ </div> <div id="userList"> $users: { u | - <div class="username"><a href="/u/$u.nick$"> + <div class="username"><a href="/u/$u.nick$" target="_blank"> $if(u.avatar)$<img src="$u.avatar$" width="50" height="50">$endif$ $u.nick$</a><br> </div> diff --git a/template/log.st b/template/log.st index 7281e11..65f149e 100755 --- a/template/log.st +++ b/template/log.st @@ -2,7 +2,7 @@ <head> <title>dump.fm log</title> $head()$ - <link rel="stylesheet" type="text/css" href="/static/profile.css"> + <link rel="stylesheet" type="text/css" href="/static/log.css"> <style> </style> @@ -20,6 +20,9 @@ <br> <div id="posts"> + <div id="lolbanner"> + <img src="/static/welcomebanner.gif"> + </div> $if(dumps)$ $dumps: { d | $logged_dump(dump=d)$ }$ $else$ diff --git a/template/logged_dump.st b/template/logged_dump.st index c7cbbd2..86465e3 100755 --- a/template/logged_dump.st +++ b/template/logged_dump.st @@ -32,7 +32,7 @@ img{ </style> <div class="logged-dump"> <div>$dump.created_on$ -- by <b><a href="/u/$dump.nick$">$dump.nick$</a></b></div> - <a href="/u/$dump.nick$"><img height="50" width="50" src="$dump.avatar$" /></a> + <a href="/u/$dump.nick$"><div id="logavatar"><img height="50" width="50" src="$dump.avatar$" /></div></a> <div class="content">$dump.content$</div> <hr /> </div> diff --git a/template/profile.st b/template/profile.st index 26cb5a1..e3f59ae 100755 --- a/template/profile.st +++ b/template/profile.st @@ -32,8 +32,6 @@ $if(dumps)$ $dumps:{ d | $logged_dump(dump=d)$ }$ - - <div id="profile"> <h2>$nick$</h2> @@ -79,6 +77,7 @@ <div id="date"> <div type="text" id="datepicker"></div></div> </div> + $else$ <h3> </h3> <h3> </h3> |
