Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates39
1 files changed, 39 insertions, 0 deletions
diff --git a/templates b/templates
new file mode 100644
index 0000000..cc31dc9
--- /dev/null
+++ b/templates
@@ -0,0 +1,39 @@
+#!index
+<!doctype html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>Journal Share - {nick}</title>
+ <link href="style.css" rel="stylesheet" type="text/css"></link>
+ </head>
+ <body>
+ <div class="toolbar">
+ <img src="images/journal-share-icon.png"></img>{nick}'s Journal
+ <div class="refresh" onclick="document.location.reload(true)">
+ <img src="images/refresh.png" width="40" height="40"></img>
+ </div>
+ </div>
+ {objects}
+ </body>
+</html>
+!#
+
+#!object
+ <table>
+ <tbody>
+ <tr>
+ <td>
+ <a href="files/{file}">
+ <img src="images/{icon}" height="40" width="40" style="margin-right: 5px;">
+ </a>
+ </td>
+ <td>
+ <a href="files/{file}">
+ {name}
+ </a>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ <hr>
+!#