summaryrefslogtreecommitdiff
path: root/template/popular.st
diff options
context:
space:
mode:
authorScott Ostler <scottbot9000@gmail.com>2010-07-02 11:33:14 -0400
committerScott Ostler <scottbot9000@gmail.com>2010-07-02 11:33:14 -0400
commit1fd0be696cf74dd73697d507a7bc7b7db18a1ffd (patch)
tree8177a88fcfc280bb115414f17c8bd0ec62d7dcde /template/popular.st
parente591afe4d4453e10344068dd5becd5aa4ed052c4 (diff)
Add /nick/popular
Diffstat (limited to 'template/popular.st')
-rw-r--r--template/popular.st49
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>