diff options
| author | Scott Ostler <sostler@deathmachine.local> | 2010-02-24 08:04:03 -0500 |
|---|---|---|
| committer | Scott Ostler <sostler@deathmachine.local> | 2010-02-24 08:04:03 -0500 |
| commit | 10e5c6b24b63e5a83922058d47380577808b8d3e (patch) | |
| tree | 0cfaf9ce7ea312c7d2f084c2f5626ac421a9d9e3 /template | |
| parent | af3d49a9c3092f600e62a66cc78a462ef9a70e7e (diff) | |
Added avatar uploading, images to logs
Diffstat (limited to 'template')
| -rwxr-xr-x | template/log.st | 7 | ||||
| -rwxr-xr-x | template/logged_dump.st | 1 |
2 files changed, 3 insertions, 5 deletions
diff --git a/template/log.st b/template/log.st index 0a12550..97eaa78 100755 --- a/template/log.st +++ b/template/log.st @@ -16,12 +16,9 @@ <div id="log"> - <div id="loghead"> - - </div> + <div id="loghead"></div> <br> - <div id="posts"> $if(dumps)$ $dumps: { d | $logged_dump(dump=d)$ }$ @@ -31,7 +28,7 @@ <div id="pnav"> $if(next)$ - <div id="pnavn"><a href="/$roomkey$/log/$next$">next ☞</a></div> + <div id="pnavn"><a href="/$roomkey$/log/$next$">next ☞</a></div> $endif$ diff --git a/template/logged_dump.st b/template/logged_dump.st index 86e23fc..01700b5 100755 --- a/template/logged_dump.st +++ b/template/logged_dump.st @@ -31,6 +31,7 @@ img{ } </style> <div class="logged-dump"> + <a href="/u/$dump.nick$"><img height="50" width="50" src="$dump.avatar$" /></a> <div>$dump.created_on$ -- by <a href="/u/$dump.nick$">$dump.nick$</a></div> <div class="content">$dump.content$</div> <hr /> |
