summaryrefslogtreecommitdiff
path: root/template/profile.st
blob: e407ce1d0aa47e704791f4a8efa8d0011b5ae743 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<html>
  <head>
    <title>$nick$'s dump.fm</title>
    $head()$
    <link rel="stylesheet" type="text/css" media="screen"
          href="/static/profile.css">
    <script src="/static/jquery.editinplace.1.0.1.packed.js"
            type="text/javascript" >
    </script>
    <script>
      jQuery(document).ready(initProfile);
      jQuery(document).ready(function() {
          jQuery(".linkify").each(function() {
              var text = jQuery(this).text();
              jQuery(this).html(linkify(text));
          });
      });
    </script>
  </head>
  <body>
    $banner()$
    <div id="chatrap">

      <div id="log">
        <div id="loghead">

        </div>
        <br>
        <div id="posts">

          $if(dumps)$
            $dumps:{ d | $logged_dump(dump=d)$ }$
          $else$
          <h3>&nbsp;</h3>
          <h3>&nbsp;</h3>
          <h3>&nbsp;</h3>  <h3>&nbsp;</h3>
          <h3>&nbsp;</h3>
          <h3>&nbsp;</h3><div id="newuser">
          <h3>This is your user log, it's where all the images you post
            are saved. <br>
            To get started join <a href="/chat">Room A</a> and post a
            few pictures.</h3>
          <h3>&nbsp;</h3></div>
          <h3>&nbsp;</h3>
          <h3>&nbsp;</h3> <h3>&nbsp;</h3>
          <h3>&nbsp;</h3>
          <h3>&nbsp;</h3>
          $endif$
          <p>&nbsp;</p>
           <div id="pnav">
           <div id="pnavo">
          $if(next)$
          <a href="/u/$nick$/$next$"><- OLD DUMPS</a>
          $endif$
          </div>
           <div id="pnavn">
          &nbsp;&nbsp;
          $if(prev)$
         <a href="/u/$nick$/$prev$">NEW DUMPS -></a>
          $endif$

          <br><br>
           </div></div>
        </div>

        <div id="profile">
          <h2>$nick$</h2>

          $if(avatar)$
          <img id="avatarPic" src="$avatar$" width="150px"/>
          $else$
          <b id="avatarPic">No avatar</b>
          $endif$

          $if(is_home)$
          <div id="avatar" class="editable">$avatar$</div>
          $endif$

          <h3>contact info</h3>
          <div id="contact" class="$if(is_home)$editable$else$linkify$endif$">
            $contact$
          </div>
          <br>

          <h3>personal info</h3>
          <div id="bio" class="$if(is_home)$editable$else$linkify$endif$">
            $bio$
          </div>
          <br><br><br>

        </div>

        <div id="footer">
          $footer()$
        </div>
      </div>
    </div>
  </body>
</html>