diff options
| author | Scott Ostler <scottbot9000@gmail.com> | 2011-01-04 15:42:23 -0500 |
|---|---|---|
| committer | Scott Ostler <scottbot9000@gmail.com> | 2011-01-04 15:42:23 -0500 |
| commit | 92b092823c21af1339e0d42716dc856357f93e85 (patch) | |
| tree | 809221e2a3b3c88306ba5e4b4996eb05297cec02 /template/topic.st | |
| parent | 7a031af911887a913857fdcebb252231119f4bf9 (diff) | |
Added topics, refactored recipient handling
Diffstat (limited to 'template/topic.st')
| -rw-r--r-- | template/topic.st | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/template/topic.st b/template/topic.st new file mode 100644 index 0000000..71451b2 --- /dev/null +++ b/template/topic.st @@ -0,0 +1,39 @@ +<html> + <head> + <title>#$topic$ - dump.fm</title> + $head()$ + <script> + var Recips = $recips$; + jQuery(function() { + initLog(Recips) + }); + </script> + </head> + <body> + $banner()$ + <div id="content"> + <div id="messagePanep"> + <div id="userListp"> + <h2><a href="/t/$topic$">#$topic$</a></h2> + <br><h3></h3> + </div> + <div id="messageList"> + $if(dumps)$ + <span class="content"> + $dumps: { d | $log_dump(dump=d)$ }$ + </span> + $else$ + <span>Topic #$topic$ doesn't exist yet!</span> + $endif$ + </div> + </div> + <div id="footerc"> + $footer()$ + </div> + </div> +</div> +</div> +</div> + + </body> +</html> |
