blob: e4dd467eec074ab78271ae6cd690195dbfae6c80 (
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
|
<html>
<head>
<title>$nick$'s dump.fm</title>
$head()$
<link rel="stylesheet" type="text/css" media="screen" href="/static/css/profile.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>
$banner()$
<div id="chatrap">
<div id="headerbar"></div>
<div id="log">
<div id="loghead">
</div>
<br>
<div id="posts">
<div id="cats">
$if(dumps)$
<div id="lolbanner">
<img src="/static/welcomebanner.gif">
</div>
$dumps:{ d | $profile_dump(dump=d)$ }$
<div id="profile">
<h2>$nick$</h2>
$if(avatar)$
<img id="avatarPic" src="$avatar$" width="150px"/>
$else$
<img id="avatarPic"><img src="/static/noinfo.png">
$endif$
$if(is_home)$
<div id="avatar-editing" style="display: none">
<div id="avatar" class="editable">$avatar$</div>
<input id="upload" value="Upload Icon" type="submit">
<img id="spinner" src="/static/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/noinfo.png"></div>
$endif$
<br>
<h3>bio</h3>
$if(bio)$
<div id="bio" class="linkify">$bio$</div>
$else$
<div><img id="bio" src="/static/noinfo.png"></div>
$endif$
$if(is_home)$
<br>
<div id="edit-toggle"><a href="#">edit profile</a></div>
$endif$
<br>
<div id="date">
<div type="text" id="datepicker"></div></div>
</div>
$else$
<h3> </h3>
<h3> </h3>
<h3> </h3>
<h3> </h3>
<h3> </h3>
<h3> </h3>
<div id="newuser">
<h2>Welcome to dump.fm</h2>
<br><br>
<h1>Step ❶</h1>
<h3>☟ Find a sweet image for your avatar, paste the URL below ☟</h3>
$if(avatar)$
<img id="avatarPic" src="$avatar$" width="150px"/>
$else$
<b id="avatarPic"></b>
$endif$
$if(is_home)$
<div id="avatar-editing">
<div id="avatar" class="editable">$avatar$</div>
<input id="upload" value="Upload Icon" type="submit">
<img id="spinner" src="/static/spinner.gif" style="display: none" />
</div>
$endif$
<h1>Step ❷</h1>
<h3>☟ Enter some contact info below ☟</h3>
<div id="contact" class="$if(is_home)$editable$else$linkify$endif$">$contact$</div>
<br>
<h1>Step ❸</h1>
<h3>☟ Enter some personal info below ☟</h3>
<div id="bio" class="$if(is_home)$editable$else$linkify$endif$">$bio$</div>
<br>
<h1>Step ❹</h1>
<h3> <a href="/chat">Join the ♣ and start posting pictures!</a></h3>
<h3> </h3></div>
<h3> </h3>
<h3> </h3>
<h3> </h3>
<h3> </h3>
<h3> </h3>
$endif$
<p> </p>
<div id="pnav">
$if(next)$
<div id="pnavn"><a href="/u/$nick$/$next$">next ☞</a></div>
$endif$
$if(prev)$
<div id="pnavo"> <a href="/u/$nick$/$prev$">☜ prev</a></div>
$endif$
<br><br>
</div>
<div id="footer">
$footer()$
</div>
</div>
</div></div></div>
</body>
</html>
|