Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/templates
blob: 9a8b9eeab6859bcf4237ed18a9199fa0c94ac296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!index
<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Journal Share - {nick}</title>
    <link href="style.css" rel="stylesheet" type="text/css"></link>
    <link rel="icon" type="image/svg" href="images/journalshare-icon.svg"></link>
  </head>
  <body>
    <table id="toolbar">
      <tbody>
        <tr>
          <td>
            <a href="index.html">
              <img src="images/journalshare-icon.svg"></img>
            </a>
          </td>
          <td>
            {nick}'s Journal
          </td>
          <td>
            <div class="refresh" onclick="document.location.reload(true)">
              <img src="images/refresh.png" width="40" height="40"></img>
            </div>
          </td>
        </tr>
      </tbody>
    </table>
    {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>
!#