diff options
| author | tim b <timb@camcompu.home> | 2010-07-02 09:24:34 -0700 |
|---|---|---|
| committer | tim b <timb@camcompu.home> | 2010-07-02 09:24:34 -0700 |
| commit | fb4f8932ad3caf7a5ffdb09685d7424879a92ead (patch) | |
| tree | b018770c09f58da9b511baadb5b9b32bbcf6c137 /template/popular.st | |
| parent | 532d81b0207314aad593d1e398076915e53da7e9 (diff) | |
| parent | 5b2139d5a747f37264160b43b4c776846b54cb74 (diff) | |
Merge branch 'master' of ssh://dump.fm/pichat/repo
Diffstat (limited to 'template/popular.st')
| -rw-r--r-- | template/popular.st | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/template/popular.st b/template/popular.st new file mode 100644 index 0000000..21edcc1 --- /dev/null +++ b/template/popular.st @@ -0,0 +1,49 @@ +<html> + <head> + <title>$nick$'s dump.fm -- popular</title> + $head()$ + <link rel="stylesheet" type="text/css" media="screen" href="/static/css/dump.css"> + + <script> + jQuery(document).ready(initLog); + </script> + + </head> + <body> + $banner()$ + <div id="dcontent"> + + + <div id="messagePanep"> + $mini_profile$ + <div id="messageList"> + $if(dumps)$ <span class="content"> + $dumps:{ d | $popular_dump(dump=d)$ }$ + </span> + $else$ + no dumps + $endif$ + </div> + + <div id="msgInputDiv"> + <div id="msginputrapper"> + $if(prev)$ + <a href="/$nick$/whofaved/$prev$"><input id="prevbutton" value="<- Prev"></a> + $else$ + <input id="prevbutton"> + $endif$ + + $if(next)$ + <a href="/$nick$/whofaved/$next$"> <input id="nextbutton" value="Next ->"></a> + $else$ + <input id="nextbutton" value="nomodumps"> + $endif$ + </div> + <div id="footerc"> + $footer()$ + </div> + </div> + </div> + </div> + </body> +</html> |
