blob: 61be826c0dba1140bb741d6f1a958f21ba9c2de2 (
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
|
<html>
<head>
<title>$nick$'s dump.fm</title>
$head()$
<link rel="stylesheet" type="text/css" media="screen" href="/static/css/dump.css">
<script src="/static/js/jquery.editinplace.1.0.1.packed.js" type="text/javascript"></script>
<script src="/static/js/ajaxupload.js"></script>
<script>
jQuery(document).ready(initProfile);
</script>
</head>
<body class="profile">
$banner()$
<div id="chatrap">
<div id="headerbar"></div>
<div id="log">
<div id="loghead">
</div>
<br>
<div id="posts">
<div id="cats">
$if(dumps)$
$dumps:{ d | $profile_dump(dump=d)$ }$
<div id="profile">
<h2>$nick$ </h2><br>
$if(score_ent)$
<h8>
fav score: $score$
<h9>$score_ent$</h9>
$endif$</h8>
$if(isadmin)$
<div id="adminmute">
<a href="#" onclick="Admin.mute('$nick$'); return false">Mute $nick$!</a><br>
</div>
$endif$
$if(avatar)$
<img id="avatarPic" src="$avatar$" width="150px"/>
$else$
<img id="avatarPic" src="/static/img/noinfo.png">
$endif$
$if(is_home)$
<div id="avatar-editing" style="display: none">
<input id="uploadp" value="Upload Icon" type="submit">
<img id="spinner" src="/static/img/spinner.gif" style="display: none" />
</div>
$endif$
<h3>contact info</h3>
$if(contact)$
<div id="contact" class="linkify">$contact$</div>
$else$
<div><img id="contact" src="/static/img/noinfo.png"></div>
$endif$
<br>
<h3>bio</h3>
$if(bio)$
<div id="bio" class="linkify">$bio$</div>
$else$
<div><img id="bio" src="/static/img/noinfo.png"></div>
$endif$
$if(is_home)$
<br>
<div id="edit-toggle"><a href="#">edit profile</a></div>
$endif$
<br>
<a href="http://dump.fm/u/$nick$/favorites"><h7>$nick$'s <br>Favorite Pix</h7></a>
<div id="date">
<div type="text" id="datepicker"></div></div>
</div>
$else$
<div class="logged-dump dump $if(dump.favorited)$favorite$endif$" id="message-$dump.message_id$" nick="$dump.nick$">
<div>
$nick$'s first dump.fm post!
</div>
<a href="/$nick$">
<div id="logavatar">
$if(dump.avatar)$
<img height="50" width="50" src="$dump.avatar$" />
$else$
<img height="50" width="50" src="/static/img/noinfo.png">
$endif$
</div></a>
$if(dump.favorited)$
<img src="/static/img/thumbs/heartover.gif" class="thumb favorite" onclick="Tag.favorite(this)">
$else$
<img src="/static/img/thumbs/heart.gif" class="thumb" onclick="Tag.favorite(this)">
$endif$
<div class="content2"><img src="/static/img/furieprofile.png"></div>
<hr/>
$share_buttons()$
</div>
<div id="profile">
<h2>$nick$</h2>
$if(isadmin)$
<div id="adminmute">
<a href="#" onclick="Admin.mute('$nick$'); return false">Mute $nick$!</a><br>
</div>
$endif$
$if(avatar)$
<img id="avatarPic" src="$avatar$" width="150px"/>
$else$
<img id="avatarPic" src="/static/img/noinfo.png">
$endif$
$if(is_home)$
<div id="avatar-editing" style="display: none">
<input id="uploadp" value="Upload Icon" type="submit">
<img id="spinner" src="/static/img/spinner.gif" style="display: none" />
</div>
$endif$
<h3>contact info</h3>
$if(contact)$
<div id="contact" class="linkify">$contact$</div>
$else$
<div><img id="contact" src="/static/img/noinfo.png"></div>
$endif$
<br>
<h3>bio</h3>
$if(bio)$
<div id="bio" class="linkify">$bio$</div>
$else$
<div><img id="bio" src="/static/img/noinfo.png"></div>
$endif$
$if(is_home)$
<br>
<div id="edit-toggle"><a href="#">edit profile</a></div>
$endif$
<br>
<a href="/u/$nick$/favorites"><h7>$nick$'s Favorite Pix</h7></a>
<div id="date">
<div type="text" id="datepicker"></div></div>
</div>
$endif$
<p> </p>
<div id="pnav">
$if(next)$
<div id="pnavn"><a href="/$nick$/$next$">next ☞</a></div>
$endif$
$if(prev)$
<div id="pnavo"> <a href="/$nick$/$prev$">☜ prev</a></div>
$endif$
<br><br>
</div>
<div id="footer">
$footer()$
</div>
</div>
</div></div></div>
</body>
</html>
|