Thimblr 0.6.7
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/thimblr +8 -0
- data/config/demo.yml +204 -0
- data/config/settings.default.yaml +18 -0
- data/config/settings.yaml +18 -0
- data/lib/thimblr.rb +181 -0
- data/lib/thimblr/parser.rb +389 -0
- data/themes/101.html +431 -0
- data/themes/Redux.html +1002 -0
- data/themes/Stationary.html +221 -0
- data/views/help.erb +165 -0
- data/views/index.erb +49 -0
- metadata +83 -0
data/themes/101.html
ADDED
@@ -0,0 +1,431 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
6
|
+
<title>{Title}{block:SearchPage} - Search results for "{SearchQuery}"{/block:SearchPage}{block:PostSummary} - {PostSummary}{/block:PostSummary}</title>
|
7
|
+
<link rel="icon" href="{Favicon}"/>
|
8
|
+
<!-- custom colours -->
|
9
|
+
<meta name="color:Regular Entry" content="#5a308d"/>
|
10
|
+
<meta name="color:Video Entry" content="#bb225a"/>
|
11
|
+
<meta name="color:Audio Entry" content="#cf4039"/>
|
12
|
+
<meta name="color:Link Entry" content="#8abd50"/>
|
13
|
+
<meta name="color:Photo Entry" content="#90deec"/>
|
14
|
+
<meta name="color:Twitter Entry" content="#01dded"/>
|
15
|
+
<meta name="color:Description Link" content="#73b8c4"/>
|
16
|
+
<meta name="font:Body" content="Helvetica, Arial, Sans-Serif"/>
|
17
|
+
<meta name="font:Title" content="Helvetica, Arial, Sans-Serif"/>
|
18
|
+
<!-- end custom colours -->
|
19
|
+
|
20
|
+
<meta name="text:Disqus Shortname" content="" />
|
21
|
+
|
22
|
+
{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
|
23
|
+
|
24
|
+
<link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}"/>
|
25
|
+
<link rel="stylesheet" type="text/css" href="http://static.tumblr.com/xhpdxdi/YpZkip18h/style.css">
|
26
|
+
<meta name="viewport" content="width=775"/> <!-- iPhone -->
|
27
|
+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
|
28
|
+
<script type="text/javascript" src="http://static.tumblr.com/xhpdxdi/iGMkinf8r/jqwidont-compressed.js"></script>
|
29
|
+
<script type="text/javascript" src="http://static.tumblr.com/xhpdxdi/3mkkinfa8/shortcut.js"></script>
|
30
|
+
<script type="text/javascript" src="http://static.tumblr.com/xhpdxdi/1H9kinfb0/lightbox.js"></script>
|
31
|
+
<script type="text/javascript" src="http://static.tumblr.com/sajzoro/BgXkqqy95/me.js"></script>
|
32
|
+
<script type="text/javascript">
|
33
|
+
|
34
|
+
// enter your twitter username if you want it to display your most recent status.
|
35
|
+
{block:IndexPage}
|
36
|
+
var twitter_username = ""
|
37
|
+
{/block:IndexPage}
|
38
|
+
|
39
|
+
|
40
|
+
function next_page(){
|
41
|
+
//{block:NextPage}
|
42
|
+
window.location = "{NextPage}"
|
43
|
+
//{/block:NextPage}
|
44
|
+
}
|
45
|
+
function previous_page(){
|
46
|
+
//{block:PreviousPage}
|
47
|
+
window.location = "{PreviousPage}"
|
48
|
+
//{/block:PreviousPage}
|
49
|
+
}
|
50
|
+
|
51
|
+
var current_page = {CurrentPage}
|
52
|
+
|
53
|
+
</script>
|
54
|
+
<style type="text/css">
|
55
|
+
body {
|
56
|
+
font-family: {font:Body};
|
57
|
+
}
|
58
|
+
h1 {
|
59
|
+
font-family: {font:Title};
|
60
|
+
}
|
61
|
+
.regular .content img {
|
62
|
+
max-width: 400px;
|
63
|
+
}
|
64
|
+
.regular .content blockquote img {
|
65
|
+
max-width: 150px;
|
66
|
+
}
|
67
|
+
|
68
|
+
.regular,
|
69
|
+
.conversation,
|
70
|
+
.quote{
|
71
|
+
background-color:{color:Regular Entry};
|
72
|
+
}
|
73
|
+
.regular .caption h3 a,
|
74
|
+
.conversation .caption h3 a,
|
75
|
+
.quote .caption h3 a{
|
76
|
+
color:{color:Regular Entry};
|
77
|
+
}
|
78
|
+
.video{
|
79
|
+
background-color:{color:Video Entry};
|
80
|
+
}
|
81
|
+
.audio{
|
82
|
+
background-color:{color:Audio Entry};
|
83
|
+
}
|
84
|
+
.link{
|
85
|
+
background-color:{color:Link Entry};
|
86
|
+
}
|
87
|
+
.link .caption h3 a{
|
88
|
+
color:{color:Link Entry};
|
89
|
+
}
|
90
|
+
.photo{
|
91
|
+
background-color:{color:Photo Entry};
|
92
|
+
}
|
93
|
+
#twitter{
|
94
|
+
background-color:{color:Twitter Entry};
|
95
|
+
}
|
96
|
+
#right a{
|
97
|
+
color:{color:Description Link};
|
98
|
+
}
|
99
|
+
#disqus_thread h3 {
|
100
|
+
font-size: 15px;
|
101
|
+
}
|
102
|
+
em { font-style: italic; }
|
103
|
+
strong { font-weight: bold; }
|
104
|
+
img.author {
|
105
|
+
float:left;
|
106
|
+
margin:2px 6px 6px 0;
|
107
|
+
}
|
108
|
+
div.photo img.author,div.video img.author {
|
109
|
+
margin-top:12px;
|
110
|
+
}
|
111
|
+
|
112
|
+
#right p {
|
113
|
+
font-size:11px;
|
114
|
+
line-height:12px;
|
115
|
+
}
|
116
|
+
|
117
|
+
div.credit {
|
118
|
+
-moz-opacity:.30;
|
119
|
+
filter:alpha(opacity=30);
|
120
|
+
opacity:.30;
|
121
|
+
}
|
122
|
+
|
123
|
+
div.credit:hover {
|
124
|
+
-moz-opacity:1.00;
|
125
|
+
filter:alpha(opacity=100);
|
126
|
+
opacity:1.00;
|
127
|
+
}
|
128
|
+
|
129
|
+
{CustomCSS}
|
130
|
+
</style>
|
131
|
+
<!--[if lt IE 7]>
|
132
|
+
<style type="text/css">
|
133
|
+
</style>
|
134
|
+
<![endif]-->
|
135
|
+
</head>
|
136
|
+
<body>
|
137
|
+
<div id="bg"></div>
|
138
|
+
<div id="border_overlay"></div>
|
139
|
+
<div id="loading"></div>
|
140
|
+
<div id="right">
|
141
|
+
<h1><a href="/" class="title">{Title}</a></h1>
|
142
|
+
<p class="description">{Description}</p>
|
143
|
+
<div class="panel" id="search">
|
144
|
+
<form action="/search" method="get">
|
145
|
+
<input type="text" name="q" value="Type and press enter to search." id="searchfield" />
|
146
|
+
</form>
|
147
|
+
</div>
|
148
|
+
<p class="colphon">{block:HasPages}{block:Pages}<a href="{URL}">{Label}</a> | {/block:Pages}{/block:HasPages}<a href="/archive" id="archive_link">Archive</a> | <a href="{RSS}">RSS</a></p>
|
149
|
+
{block:GroupMembers}<p class="colphon">{block:GroupMember}<img src="{GroupMemberPortraitURL-24}" title="{GroupMemberName}"/> {/block:GroupMember}</p>{/block:GroupMembers}
|
150
|
+
</div>
|
151
|
+
<div id="posts">
|
152
|
+
|
153
|
+
<div id="twitter" class="entry hide">
|
154
|
+
<div class="icon">
|
155
|
+
<a href="#" class="permalink"></a>
|
156
|
+
</div><!-- /.icon -->
|
157
|
+
<div class="content">
|
158
|
+
<div class="caption">
|
159
|
+
<p class="latest">Latest on twitter:</p>
|
160
|
+
<p id="twitter_status"></p>
|
161
|
+
</div><!-- /.caption -->
|
162
|
+
</div><!-- /.content -->
|
163
|
+
</div><!-- /.entry #twitter -->
|
164
|
+
|
165
|
+
<!-- SEARCH RESULTS -->
|
166
|
+
|
167
|
+
<!-- {block:SearchPage} -->
|
168
|
+
<div class="entry search">
|
169
|
+
<div class="icon">
|
170
|
+
<a class="permalink" href="/search?q={SearchQuery}"></a>
|
171
|
+
</div><!-- /.icon -->
|
172
|
+
<div class="content">
|
173
|
+
<div class="caption">
|
174
|
+
<p>Your search for '<span class="query">{SearchQuery}</span>' returned {SearchResultCount} result(s).</p>
|
175
|
+
</div><!-- /.caption -->
|
176
|
+
</div><!-- /.content -->
|
177
|
+
</div><!-- /.entry .search -->
|
178
|
+
<!-- {/block:SearchPage} -->
|
179
|
+
|
180
|
+
|
181
|
+
<!-- {block:Posts} -->
|
182
|
+
|
183
|
+
<!-- DATES -->
|
184
|
+
|
185
|
+
<!-- {block:NewDayDate} -->
|
186
|
+
<div class="entry date">
|
187
|
+
<div class="icon">
|
188
|
+
<a class="permalink" href="/archive/{Year}/{MonthNumber}"></a>
|
189
|
+
</div><!-- /.icon -->
|
190
|
+
<div class="content">
|
191
|
+
<div class="caption">
|
192
|
+
<p><a href="/archive/{Year}/{MonthNumber}">{Month} {DayOfMonth} {Year}</a></p>
|
193
|
+
</div><!-- /.caption -->
|
194
|
+
</div><!-- /.content -->
|
195
|
+
</div><!-- /.entry .date -->
|
196
|
+
<!-- {/block:NewDayDate} -->
|
197
|
+
|
198
|
+
<!-- PHOTO -->
|
199
|
+
<!-- {block:Photo} -->
|
200
|
+
<div class="post photo" id="p_{PostID}">
|
201
|
+
<div class="icon">
|
202
|
+
<a class="permalink" href="{Permalink}"></a>
|
203
|
+
{block:HighRes}<a href="{PhotoURL-HighRes}" rel="lightbox" class="zoom"></a>{/block:HighRes}
|
204
|
+
{block:IndexPage}
|
205
|
+
{block:NoteCount}<a href="{Permalink}" class="notes">*{NoteCount}<br></a>{/block:NoteCount}
|
206
|
+
{/block:IndexPage}
|
207
|
+
</div>
|
208
|
+
<div class="content">
|
209
|
+
<div class="the_photo">
|
210
|
+
<div class="photo_inner photo_loading">
|
211
|
+
{LinkOpenTag}<img src="{PhotoURL-500}" class="faint" alt="{PhotoAlt}"/>{LinkCloseTag}
|
212
|
+
</div>
|
213
|
+
</div><!-- .the_photo -->
|
214
|
+
<!--{block:Caption}-->
|
215
|
+
<div class="caption">
|
216
|
+
{block:GroupMembers}<img class="author" title="{PostAuthorName}" alt="{PostAuthorName} writes:" src="{PostAuthorPortraitURL-64}" />{/block:GroupMembers}
|
217
|
+
<p>{Caption}</p>
|
218
|
+
{block:Date}{block:IfDisqusShortname}<p><a href="{Permalink}#disqus_thread"></a></p>{block:IfDisqusShortname}{/block:Date}
|
219
|
+
</div><!-- /.caption -->
|
220
|
+
<!--{/block:Caption}-->
|
221
|
+
</div><!-- /.content -->
|
222
|
+
</div><!-- /.post .photo -->
|
223
|
+
<!-- {/block:Photo} -->
|
224
|
+
|
225
|
+
<!-- VIDEO -->
|
226
|
+
|
227
|
+
<!-- {block:Video} -->
|
228
|
+
<div class="post video" id="p_{PostID}">
|
229
|
+
<div class="icon">
|
230
|
+
<a class="permalink" href="{Permalink}"></a>
|
231
|
+
{block:IndexPage}
|
232
|
+
{block:NoteCount}<a href="{Permalink}" class="notes">*{NoteCount}<br></a>{/block:NoteCount}
|
233
|
+
{/block:IndexPage}
|
234
|
+
</div><!-- /.icon -->
|
235
|
+
<div class="content">
|
236
|
+
<div class="player">{Video-500}</div>
|
237
|
+
<!--{block:Caption}-->
|
238
|
+
<div class="caption">
|
239
|
+
{block:GroupMembers}<img class="author" title="{PostAuthorName}" alt="{PostAuthorName} writes:" src="{PostAuthorPortraitURL-64}" />{/block:GroupMembers}
|
240
|
+
<p>{Caption}</p>
|
241
|
+
{block:Date}{block:IfDisqusShortname}<p><a href="{Permalink}#disqus_thread"></a></p>{block:IfDisqusShortname}{/block:Date}
|
242
|
+
</div><!-- /.caption -->
|
243
|
+
<!--{/block:Caption}-->
|
244
|
+
</div><!-- /.content -->
|
245
|
+
</div><!-- /.post .video -->
|
246
|
+
<!-- {/block:Video} -->
|
247
|
+
|
248
|
+
<!-- LINK -->
|
249
|
+
|
250
|
+
<!-- {block:Link} -->
|
251
|
+
<div class="post link" id="p_{PostID}">
|
252
|
+
<div class="icon">
|
253
|
+
<a class="permalink" href="{Permalink}"></a>
|
254
|
+
{block:IndexPage}
|
255
|
+
{block:NoteCount}<a href="{Permalink}" class="notes">*{NoteCount}<br></a>{/block:NoteCount}
|
256
|
+
{/block:IndexPage}
|
257
|
+
</div><!-- /.icon -->
|
258
|
+
<div class="content">
|
259
|
+
<div class="caption">
|
260
|
+
<h3><a href="{URL}" {Target}>{Name}</a></h3>
|
261
|
+
{block:GroupMembers}<img class="author" title="{PostAuthorName}" alt="{PostAuthorName} writes:" src="{PostAuthorPortraitURL-64}" />{/block:GroupMembers}
|
262
|
+
<p><span class="description">{Description}</span></p>
|
263
|
+
{block:Date}{block:IfDisqusShortname}<p><a href="{Permalink}#disqus_thread"></a></p>{block:IfDisqusShortname}{/block:Date}
|
264
|
+
</div><!-- /.caption -->
|
265
|
+
</div><!-- /.content -->
|
266
|
+
</div><!-- /.post .link -->
|
267
|
+
<!-- {/block:Link} -->
|
268
|
+
|
269
|
+
<!-- REGULAR -->
|
270
|
+
|
271
|
+
<!-- {block:Regular} -->
|
272
|
+
<div class="post regular" id="p_{PostID}">
|
273
|
+
<div class="icon">
|
274
|
+
<a class="permalink" href="{Permalink}"></a>
|
275
|
+
{block:IndexPage}
|
276
|
+
{block:NoteCount}<a href="{Permalink}" class="notes">*{NoteCount}<br></a>{/block:NoteCount}
|
277
|
+
{/block:IndexPage}
|
278
|
+
</div><!-- /.icon -->
|
279
|
+
<div class="content">
|
280
|
+
<div class="caption">
|
281
|
+
<h3><a href="{Permalink}">{Title}</a></h3>
|
282
|
+
{block:GroupMembers}<img class="author" title="{PostAuthorName}" alt="{PostAuthorName} writes:" src="{PostAuthorPortraitURL-64}" />{/block:GroupMembers}
|
283
|
+
<p>{Body}</p>
|
284
|
+
{block:Date}{block:IfDisqusShortname}<p><a href="{Permalink}#disqus_thread"></a></p>{block:IfDisqusShortname}{/block:Date}
|
285
|
+
</div><!-- /.caption -->
|
286
|
+
</div><!-- /.content -->
|
287
|
+
</div><!-- /.post .regular -->
|
288
|
+
<!-- {/block:Regular} -->
|
289
|
+
|
290
|
+
<!-- QUOTE -->
|
291
|
+
|
292
|
+
<!-- {block:Quote} -->
|
293
|
+
<div class="post quote" id="p_{PostID}">
|
294
|
+
<div class="icon">
|
295
|
+
<a class="permalink" href="{Permalink}"></a>
|
296
|
+
{block:IndexPage}
|
297
|
+
{block:NoteCount}<a href="{Permalink}" class="notes">*{NoteCount}<br></a>{/block:NoteCount}
|
298
|
+
{/block:IndexPage}
|
299
|
+
</div><!-- /.icon -->
|
300
|
+
<div class="content">
|
301
|
+
<div class="caption">
|
302
|
+
<p class="the_quote {Length}"><span class="quote_mark">"</span>{Quote}<span class="quote_mark">"</span></p>
|
303
|
+
<!-- {block:Source} -->
|
304
|
+
<p class="source">{Source}</p>
|
305
|
+
<!-- {/block:Source} -->
|
306
|
+
{block:Date}{block:IfDisqusShortname}<p><a href="{Permalink}#disqus_thread"></a></p>{block:IfDisqusShortname}{/block:Date}
|
307
|
+
</div><!-- /.caption -->
|
308
|
+
</div><!-- /.content -->
|
309
|
+
</div><!-- /.post .quote -->
|
310
|
+
<!-- {/block:Quote} -->
|
311
|
+
|
312
|
+
<!-- AUDIO -->
|
313
|
+
|
314
|
+
<!-- {block:Audio} -->
|
315
|
+
<div class="post audio" id="p_{PostID}">
|
316
|
+
<div class="icon">
|
317
|
+
<a class="permalink" href="{Permalink}"></a>
|
318
|
+
{block:ExternalAudio}<a href="{ExternalAudioURL}" class="download"></a>{/block:ExternalAudio}
|
319
|
+
{block:IndexPage}
|
320
|
+
{block:NoteCount}<a href="{Permalink}" class="notes">*{NoteCount}<br></a>{/block:NoteCount}
|
321
|
+
{/block:IndexPage}
|
322
|
+
</div><!-- /.icon -->
|
323
|
+
<div class="content">
|
324
|
+
<div class="the_player">{AudioPlayerGrey}</div>
|
325
|
+
<div class="caption">
|
326
|
+
<p>{Caption}</p>
|
327
|
+
{block:Date}{block:IfDisqusShortname}<p><a href="{Permalink}#disqus_thread"></a></p>{block:IfDisqusShortname}{/block:Date}
|
328
|
+
</div><!-- /.caption -->
|
329
|
+
</div><!-- /.content -->
|
330
|
+
</div><!-- /.post .quote -->
|
331
|
+
<!-- {/block:Audio} -->
|
332
|
+
|
333
|
+
<!-- CONVERSATION -->
|
334
|
+
|
335
|
+
<!-- {block:Conversation} -->
|
336
|
+
<div class="post conversation" id="p_{PostID}">
|
337
|
+
<div class="icon">
|
338
|
+
<a class="permalink" href="{Permalink}"></a>
|
339
|
+
{block:IndexPage}
|
340
|
+
{block:NoteCount}<a href="{Permalink}" class="notes">*{NoteCount}<br></a>{/block:NoteCount}
|
341
|
+
{/block:IndexPage}
|
342
|
+
</div><!-- /.icon -->
|
343
|
+
<div class="content">
|
344
|
+
<div class="caption">
|
345
|
+
<!-- {block:Title} -->
|
346
|
+
<h3><a href="{Permalink}">{Title}</a></h3>
|
347
|
+
<!-- {/block:Title} -->
|
348
|
+
<p>
|
349
|
+
<ul>
|
350
|
+
<!-- {block:Lines} -->
|
351
|
+
<li>
|
352
|
+
{block:Label}<span class="label {Alt}">{Label}</span>{/block:Label}
|
353
|
+
{Line}
|
354
|
+
</li>
|
355
|
+
<!-- {/block:Lines} -->
|
356
|
+
</ul>
|
357
|
+
</p>
|
358
|
+
{block:Date}{block:IfDisqusShortname}<p><a href="{Permalink}#disqus_thread"></a></p>{block:IfDisqusShortname}{/block:Date}
|
359
|
+
</div><!-- /.caption -->
|
360
|
+
</div><!-- /.content -->
|
361
|
+
</div><!-- /.post .conversation -->
|
362
|
+
<!-- {/block:Conversation} -->
|
363
|
+
|
364
|
+
|
365
|
+
<!--{block:PermalinkPage}-->
|
366
|
+
<!--{block:Date}-->
|
367
|
+
<!--{block:PostNotes}-->
|
368
|
+
<div class="entry post_notes">
|
369
|
+
<div class="icon">
|
370
|
+
<a class="permalink" href="{Permalink}"></a>
|
371
|
+
</div><!-- /.icon -->
|
372
|
+
<div class="content">
|
373
|
+
<div class="caption">
|
374
|
+
<div class="the_notes">
|
375
|
+
{PostNotes}
|
376
|
+
</div>
|
377
|
+
</div><!-- /.caption -->
|
378
|
+
</div><!-- /.content -->
|
379
|
+
</div><!-- /.entry .notes -->
|
380
|
+
<!--{/block:PostNotes}-->
|
381
|
+
|
382
|
+
<!--{block:IfDisqusShortname}-->
|
383
|
+
<div class="entry">
|
384
|
+
<div class="content">
|
385
|
+
<div class="caption">
|
386
|
+
<div id="disqus_thread"></div>
|
387
|
+
<script type="text/javascript" src="http://disqus.com/forums/{text:Disqus Shortname}/embed.js"></script>
|
388
|
+
<noscript><a href="http://{text:Disqus Shortname}.disqus.com/?url=ref">View the discussion thread.</a></noscript>
|
389
|
+
</div>
|
390
|
+
</div>
|
391
|
+
</div>
|
392
|
+
<!--{/block:IfDisqusShortname}-->
|
393
|
+
<!--{/block:Date}-->
|
394
|
+
<!--{/block:PermalinkPage}-->
|
395
|
+
|
396
|
+
|
397
|
+
<!-- {/block:Posts} -->
|
398
|
+
|
399
|
+
<!-- PAGINATION -->
|
400
|
+
<!--{block:IndexPage}-->
|
401
|
+
<div class="entry pagination">
|
402
|
+
<div class="icon">
|
403
|
+
|
404
|
+
</div>
|
405
|
+
<div class="content">
|
406
|
+
<div class="caption">
|
407
|
+
<p>{block:PreviousPage}<a href="{PreviousPage}"><span>«</span> Previous</a> / {/block:PreviousPage}{block:NextPage}<a href="{NextPage}">Next <span>»</span></a>{/block:NextPage}</p>
|
408
|
+
</div><!-- /.caption -->
|
409
|
+
</div><!-- /.content -->
|
410
|
+
</div><!-- /.entry .pagination -->
|
411
|
+
<!-- {/block:IndexPage} -->
|
412
|
+
</div>
|
413
|
+
|
414
|
+
{block:IfDisqusShortname}
|
415
|
+
<script type="text/javascript">
|
416
|
+
//<![CDATA[
|
417
|
+
(function() {
|
418
|
+
var links = document.getElementsByTagName('a');
|
419
|
+
var query = '?';
|
420
|
+
for(var i = 0; i < links.length; i++) {
|
421
|
+
if(links[i].href.indexOf('#disqus_thread') >= 0) {
|
422
|
+
query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
|
423
|
+
}
|
424
|
+
}
|
425
|
+
document.write('<script charset="utf-8" type="text/javascript" src="http://disqus.com/forums/{text:Disqus Shortname}/get_num_replies.js' + query + '"></' + 'script>');
|
426
|
+
})();
|
427
|
+
//]]>
|
428
|
+
</script>
|
429
|
+
{/block:IfDisqusShortname}
|
430
|
+
</body>
|
431
|
+
</html>
|
data/themes/Redux.html
ADDED
@@ -0,0 +1,1002 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<!--
|
3
|
+
|
4
|
+
. .o8 oooo
|
5
|
+
.o8 "888 `888
|
6
|
+
.o888oo oooo oooo ooo. .oo. .oo. 888oooo. 888 oooo d8b
|
7
|
+
888 `888 `888 `888P"Y88bP"Y88b d88' `88b 888 `888""8P
|
8
|
+
888 888 888 888 888 888 888 888 888 888
|
9
|
+
888 . 888 888 888 888 888 888 888 888 888 .o.
|
10
|
+
"888" `V88V"V8P' o888o o888o o888o `Y8bod8P' o888o d888b Y8P
|
11
|
+
|
12
|
+
-->
|
13
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
14
|
+
<head>
|
15
|
+
<!-- DEFAULT VARIABLES -->
|
16
|
+
<meta name="color:Background" content="#3b627e" />
|
17
|
+
<meta name="font:Title" content="Arial" />
|
18
|
+
<meta name="font:Body" content="Arial" />
|
19
|
+
<meta name="font:Accent" content="Lucida Sans" />
|
20
|
+
<meta name="if:Show People I Follow" content="1" />
|
21
|
+
<meta name="if:Show Tags" content="1" />
|
22
|
+
<meta name="if:Show Album Art on Audio Posts" content="1" />
|
23
|
+
<meta name="text:Disqus Shortname" content="" />
|
24
|
+
<meta name="image:Header" content="" />
|
25
|
+
<meta name="image:Background" content="" />
|
26
|
+
|
27
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
28
|
+
<title>{Title}{block:SearchPage}, Search results for: {SearchQuery}{/block:SearchPage}{block:PostSummary}, {PostSummary}{/block:PostSummary}</title>
|
29
|
+
{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
|
30
|
+
<link rel="shortcut icon" href="{Favicon}" />
|
31
|
+
<link rel="alternate" type="application/rss+xml" href="{RSS}" />
|
32
|
+
<style type="text/css">
|
33
|
+
body {
|
34
|
+
background: {color:Background} url('{image:Background}') top left fixed repeat;
|
35
|
+
margin: 0;
|
36
|
+
padding: 0;
|
37
|
+
font-family: {font:Body};
|
38
|
+
}
|
39
|
+
|
40
|
+
.clear {
|
41
|
+
clear: both;
|
42
|
+
height: 1px;
|
43
|
+
}
|
44
|
+
|
45
|
+
a img {
|
46
|
+
border: none;
|
47
|
+
}
|
48
|
+
|
49
|
+
#wrapper {
|
50
|
+
width: 845px;
|
51
|
+
margin: 0 auto;
|
52
|
+
}
|
53
|
+
|
54
|
+
#wrapper #title {
|
55
|
+
margin: 30px 0;
|
56
|
+
color: #fff;
|
57
|
+
font-size: 50px;
|
58
|
+
font-weight: bold;
|
59
|
+
font-family: {font:Title};
|
60
|
+
text-shadow: #2f2f2f 1px 3px 5px;
|
61
|
+
letter-spacing: -1px;
|
62
|
+
}
|
63
|
+
|
64
|
+
#wrapper #title a {
|
65
|
+
color: #fff;
|
66
|
+
text-decoration: none;
|
67
|
+
}
|
68
|
+
|
69
|
+
#wrapper #content {
|
70
|
+
width: 520px;
|
71
|
+
float: left;
|
72
|
+
}
|
73
|
+
|
74
|
+
#wrapper #content .post {
|
75
|
+
font-family: {font:Body};
|
76
|
+
background: #fff;
|
77
|
+
padding: 10px;
|
78
|
+
position: relative;
|
79
|
+
}
|
80
|
+
|
81
|
+
#wrapper #content .post .media {
|
82
|
+
text-align: center;
|
83
|
+
margin-bottom: 10px;
|
84
|
+
}
|
85
|
+
|
86
|
+
#wrapper #content .post .quotebg {
|
87
|
+
font-family: georgia, serif;
|
88
|
+
font-size: 150px;
|
89
|
+
color: {color:Background};
|
90
|
+
opacity: 0.2;
|
91
|
+
filter: alpha(opacity=20);
|
92
|
+
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
|
93
|
+
position: absolute;
|
94
|
+
top: 70px;
|
95
|
+
left: 10px;
|
96
|
+
}
|
97
|
+
|
98
|
+
#wrapper #content .post .quote {
|
99
|
+
color: {color:Background};
|
100
|
+
font-weight: bold;
|
101
|
+
padding: 20px 20px 5px 20px;
|
102
|
+
}
|
103
|
+
|
104
|
+
#wrapper #content .post .quote.short {
|
105
|
+
font-size: 33px;
|
106
|
+
line-height: 35px;
|
107
|
+
}
|
108
|
+
|
109
|
+
#wrapper #content .post .quote.medium {
|
110
|
+
font-size: 25px;
|
111
|
+
line-height: 28px;
|
112
|
+
}
|
113
|
+
|
114
|
+
#wrapper #content .post .quote.long {
|
115
|
+
font-size: 18px;
|
116
|
+
line-height: 22px;
|
117
|
+
}
|
118
|
+
|
119
|
+
#wrapper #content .post .quote_source *:first-child {
|
120
|
+
margin-top: 0px;
|
121
|
+
}
|
122
|
+
|
123
|
+
#wrapper #content .post .quote_source *:last-child {
|
124
|
+
margin-bottom: 0px;
|
125
|
+
}
|
126
|
+
|
127
|
+
#wrapper #content .post .quote *:first-child {
|
128
|
+
margin-top: 0px;
|
129
|
+
}
|
130
|
+
|
131
|
+
#wrapper #content .post .quote *:last-child {
|
132
|
+
margin-bottom: 0px;
|
133
|
+
}
|
134
|
+
|
135
|
+
#wrapper #content .post .copy {
|
136
|
+
color: #6e7173;
|
137
|
+
padding: 10px;
|
138
|
+
font-size: 13px;
|
139
|
+
line-height: 15px;
|
140
|
+
}
|
141
|
+
|
142
|
+
#wrapper #content .post .copy a {
|
143
|
+
color: #6e7173;
|
144
|
+
text-decoration: underline;
|
145
|
+
}
|
146
|
+
|
147
|
+
#wrapper #content .post .copy p {
|
148
|
+
margin: 10px 0 0 0;
|
149
|
+
padding: 0;
|
150
|
+
}
|
151
|
+
|
152
|
+
#wrapper #content .post .copy > p:first-child {
|
153
|
+
margin-top: 0;
|
154
|
+
}
|
155
|
+
|
156
|
+
#wrapper #content .post .copy img {
|
157
|
+
max-width: 100%;
|
158
|
+
}
|
159
|
+
|
160
|
+
#wrapper #content .post .audio {
|
161
|
+
background: #eaeaea;
|
162
|
+
float: left;
|
163
|
+
padding: 7px;
|
164
|
+
margin-bottom: 10px;
|
165
|
+
-moz-border-radius: 4px;
|
166
|
+
-webkit-border-radius: 4px;
|
167
|
+
border-radius: 4px;
|
168
|
+
}
|
169
|
+
|
170
|
+
#wrapper #content .post .audio .player {
|
171
|
+
float: left;
|
172
|
+
}
|
173
|
+
|
174
|
+
#wrapper #content .post .audio .player .audio_player embed {
|
175
|
+
border: 1px solid #c8c8c8;
|
176
|
+
}
|
177
|
+
|
178
|
+
#wrapper #content .post .audio .meta {
|
179
|
+
padding: 8px 13px;
|
180
|
+
height: 13px;
|
181
|
+
float: left;
|
182
|
+
color: #666;
|
183
|
+
font-family: {font:Accent};
|
184
|
+
font-size: 11px;
|
185
|
+
}
|
186
|
+
|
187
|
+
#wrapper #content .post .audio .meta a {
|
188
|
+
color: #666;
|
189
|
+
text-decoration: none;
|
190
|
+
}
|
191
|
+
|
192
|
+
#wrapper #content .post .album_art {
|
193
|
+
text-align: center;
|
194
|
+
}
|
195
|
+
|
196
|
+
#wrapper #content .post .question {
|
197
|
+
color: #494949;
|
198
|
+
font-size: 16px;
|
199
|
+
font-weight: bold;
|
200
|
+
background: #f1f1f1;
|
201
|
+
-moz-border-radius: 8px;
|
202
|
+
-webkit-border-radius: 8px;
|
203
|
+
border-radius: 8px;
|
204
|
+
margin: 0 0 15px 0;
|
205
|
+
padding: 15px 20px;
|
206
|
+
position: relative;
|
207
|
+
}
|
208
|
+
|
209
|
+
#wrapper #content .post .question .nipple {
|
210
|
+
width: 13px;
|
211
|
+
height: 7px;
|
212
|
+
background: #f1f1f1 url('http://static.tumblr.com/thpaaos/wqzkvsd69/mask_ask.png');
|
213
|
+
position: absolute;
|
214
|
+
bottom: -7px;
|
215
|
+
left: 30px;
|
216
|
+
}
|
217
|
+
|
218
|
+
#wrapper #content .post .asker_container {
|
219
|
+
margin: 0 0 20px 24px;
|
220
|
+
}
|
221
|
+
|
222
|
+
#wrapper #content .post .asker_container img {
|
223
|
+
margin: 0 12px -7px 0;
|
224
|
+
}
|
225
|
+
|
226
|
+
#wrapper #content .post .asker_container a.asker {
|
227
|
+
color: {color:Body};
|
228
|
+
}
|
229
|
+
|
230
|
+
#wrapper #content .post .title {
|
231
|
+
color: #494949;
|
232
|
+
font-size: 16px;
|
233
|
+
font-weight: bold;
|
234
|
+
padding: 10px 10px 0 10px;
|
235
|
+
}
|
236
|
+
|
237
|
+
#wrapper #content .post img {
|
238
|
+
max-width: 500px;
|
239
|
+
}
|
240
|
+
|
241
|
+
#wrapper #content .post .chat {
|
242
|
+
background-color: #fff;
|
243
|
+
border-left: 5px solid #dedddd;
|
244
|
+
margin: 10px 10px 0 10px;
|
245
|
+
font-size: 14px;
|
246
|
+
}
|
247
|
+
|
248
|
+
#wrapper #content .post .chat .lines {
|
249
|
+
margin-left: 1px;
|
250
|
+
}
|
251
|
+
|
252
|
+
#wrapper #content .post .chat .lines .line {
|
253
|
+
background-color: #eaeaea;
|
254
|
+
color: #494949;
|
255
|
+
margin-bottom: 1px;
|
256
|
+
padding: 3px 5px;
|
257
|
+
}
|
258
|
+
|
259
|
+
#wrapper #content .post .chat .lines .line.even {
|
260
|
+
background-color: #dedddd;
|
261
|
+
}
|
262
|
+
|
263
|
+
#wrapper #content .post .link {
|
264
|
+
margin: 4px 0 2px 0;
|
265
|
+
font-size: 16px;
|
266
|
+
line-height: 25px;
|
267
|
+
}
|
268
|
+
|
269
|
+
#wrapper #content .post .link a {
|
270
|
+
background-color: {color:Background};
|
271
|
+
color: #fff;
|
272
|
+
padding: 5px 7px;
|
273
|
+
-moz-border-radius: 4px;
|
274
|
+
-webkit-border-radius: 4px;
|
275
|
+
border-radius: 4px;
|
276
|
+
}
|
277
|
+
|
278
|
+
#wrapper #content .post .link a:hover {
|
279
|
+
opacity: 0.9;
|
280
|
+
filter: alpha(opacity=90);
|
281
|
+
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
|
282
|
+
}
|
283
|
+
|
284
|
+
#wrapper #content .post .footer {
|
285
|
+
background: #eaeaea;
|
286
|
+
-moz-border-radius: 4px;
|
287
|
+
-webkit-border-radius: 4px;
|
288
|
+
border-radius: 4px;
|
289
|
+
font-family: {font:Accent};
|
290
|
+
font-size: 11px;
|
291
|
+
color: #666;
|
292
|
+
padding: 5px 10px;
|
293
|
+
margin-top: 10px;
|
294
|
+
}
|
295
|
+
|
296
|
+
#wrapper #content .post .footer:hover {
|
297
|
+
opacity: 0.9;
|
298
|
+
filter: alpha(opacity=90);
|
299
|
+
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
|
300
|
+
}
|
301
|
+
|
302
|
+
#wrapper #content .post .footer .date {
|
303
|
+
width: 67%;
|
304
|
+
float: left;
|
305
|
+
color: #666;
|
306
|
+
}
|
307
|
+
|
308
|
+
#wrapper #content .post .footer .notes {
|
309
|
+
width: 33%;
|
310
|
+
float: right;
|
311
|
+
text-align: right;
|
312
|
+
color: #666;
|
313
|
+
}
|
314
|
+
|
315
|
+
#wrapper #content .post .footer .notes a {
|
316
|
+
color: #666;
|
317
|
+
}
|
318
|
+
|
319
|
+
#wrapper #content .post .footer .tags a {
|
320
|
+
color: #4a4a51;
|
321
|
+
text-decoration: underline;
|
322
|
+
}
|
323
|
+
|
324
|
+
#wrapper #content .post .footer .tags .tag-commas:last-child {
|
325
|
+
display: none;
|
326
|
+
}
|
327
|
+
|
328
|
+
#wrapper #content .post a {
|
329
|
+
color: #6e7173;
|
330
|
+
text-decoration: none;
|
331
|
+
}
|
332
|
+
|
333
|
+
#wrapper #content .post .copy blockquote {
|
334
|
+
margin: 10px 0px 10px 10px;
|
335
|
+
padding-left: 15px;
|
336
|
+
border-left: solid 4px #dcdcdc;
|
337
|
+
}
|
338
|
+
|
339
|
+
#wrapper #content .post .copy blockquote blockquote {
|
340
|
+
border-left: solid 4px #cccccc;
|
341
|
+
}
|
342
|
+
|
343
|
+
#wrapper #content .post .copy blockquote blockquote blockquote {
|
344
|
+
border-left: solid 4px #bcbcbc;
|
345
|
+
}
|
346
|
+
|
347
|
+
#wrapper #content .post .copy blockquote blockquote blockquote blockquote {
|
348
|
+
border-left: solid 4px #acacac;
|
349
|
+
}
|
350
|
+
|
351
|
+
#wrapper #content .post .copy blockquote blockquote blockquote blockquote blockquote {
|
352
|
+
border-left: solid 4px #9c9c9c;
|
353
|
+
}
|
354
|
+
|
355
|
+
#wrapper #content .post .copy blockquote blockquote blockquote blockquote blockquote blockquote {
|
356
|
+
border-left: solid 4px #8c8c8c;
|
357
|
+
}
|
358
|
+
|
359
|
+
#wrapper #content .bottom {
|
360
|
+
background: url('http://assets.tumblr.com/themes/redux/shadow-post.png') top center no-repeat transparent;
|
361
|
+
width: 513px;
|
362
|
+
height: 40px;
|
363
|
+
margin: 0 auto;
|
364
|
+
}
|
365
|
+
|
366
|
+
#wrapper #content #navigation {
|
367
|
+
text-align: right;
|
368
|
+
padding-bottom: 35px;
|
369
|
+
}
|
370
|
+
|
371
|
+
#wrapper #content #navigation a {
|
372
|
+
background-color: #fff;
|
373
|
+
color: {color:Background};
|
374
|
+
padding: 5px 10px;
|
375
|
+
text-decoration: none;
|
376
|
+
margin-left: 25px;
|
377
|
+
}
|
378
|
+
|
379
|
+
#wrapper #content #navigation a:hover {
|
380
|
+
opacity: 0.9;
|
381
|
+
filter: alpha(opacity=90);
|
382
|
+
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
|
383
|
+
}
|
384
|
+
|
385
|
+
#wrapper #content .post .notecontainer {
|
386
|
+
background: #eaeaea;
|
387
|
+
-moz-border-radius: 4px;
|
388
|
+
-webkit-border-radius: 4px;
|
389
|
+
border-radius: 4px;
|
390
|
+
font-family: {font:Accent};
|
391
|
+
font-size: 11px;
|
392
|
+
color: #666;
|
393
|
+
margin-top: 10px;
|
394
|
+
margin-bottom: -10px;
|
395
|
+
}
|
396
|
+
|
397
|
+
#wrapper #content .post .notecontainer a {
|
398
|
+
color: #666;
|
399
|
+
text-decoration: underline;
|
400
|
+
}
|
401
|
+
|
402
|
+
#wrapper #content .post .notecontainer ol.notes {
|
403
|
+
padding: 0px 0 10px 0;
|
404
|
+
list-style-type: none;
|
405
|
+
font-size: 11px;
|
406
|
+
}
|
407
|
+
|
408
|
+
#wrapper #content .post .notecontainer ol.notes li.note {
|
409
|
+
padding: 10px 10px 0 10px;
|
410
|
+
}
|
411
|
+
|
412
|
+
#wrapper #content .post .notecontainer ol.notes li.note img.avatar {
|
413
|
+
vertical-align: -4px;
|
414
|
+
margin-right: 10px;
|
415
|
+
width: 16px;
|
416
|
+
height: 16px;
|
417
|
+
}
|
418
|
+
|
419
|
+
#wrapper #content .post .notecontainer ol.notes li.note span.action {
|
420
|
+
font-weight: normal;
|
421
|
+
}
|
422
|
+
|
423
|
+
#wrapper #content .post .notecontainer ol.notes li.note .answer_content {
|
424
|
+
font-weight: normal;
|
425
|
+
}
|
426
|
+
|
427
|
+
#wrapper #content .post .notecontainer ol.notes li.note blockquote {
|
428
|
+
border-left: 2px solid #666;
|
429
|
+
padding: 4px 10px;
|
430
|
+
margin: 10px 0px 0px 25px;
|
431
|
+
}
|
432
|
+
|
433
|
+
#wrapper #content .post .notecontainer ol.notes li.note blockquote a {
|
434
|
+
text-decoration: none;
|
435
|
+
}
|
436
|
+
|
437
|
+
#wrapper #content #searchresults {
|
438
|
+
color: #fff;
|
439
|
+
margin: 0 0 15px 0;
|
440
|
+
text-shadow: #2f2f2f 1px 3px 5px;
|
441
|
+
font-family: {font:Body};
|
442
|
+
font-size: 20px;
|
443
|
+
}
|
444
|
+
|
445
|
+
#wrapper #sidebar {
|
446
|
+
width: 250px;
|
447
|
+
float: right;
|
448
|
+
color: {color:Background};
|
449
|
+
font-family: {font:Accent}
|
450
|
+
}
|
451
|
+
|
452
|
+
#wrapper #sidebar a {
|
453
|
+
color: {color:Background};
|
454
|
+
}
|
455
|
+
|
456
|
+
#wrapper #sidebar #top {
|
457
|
+
background: #fff;
|
458
|
+
padding: 0 20px;
|
459
|
+
|
460
|
+
-webkit-border-top-left-radius: 10px;
|
461
|
+
-webkit-border-top-right-radius: 10px;
|
462
|
+
-moz-border-radius-topleft: 10px;
|
463
|
+
-moz-border-radius-topright: 10px;
|
464
|
+
border-top-left-radius: 10px;
|
465
|
+
border-top-right-radius: 10px;
|
466
|
+
}
|
467
|
+
|
468
|
+
#wrapper #sidebar #top #avatar {
|
469
|
+
width: 146px;
|
470
|
+
height: 146px;
|
471
|
+
padding: 8px 0 0 9px;
|
472
|
+
background: url('http://assets.tumblr.com/themes/redux/avatar-bg.png') top left no-repeat transparent;
|
473
|
+
position: relative;
|
474
|
+
top: -24px;
|
475
|
+
left: -5px;
|
476
|
+
}
|
477
|
+
|
478
|
+
#wrapper #sidebar #top #pages {
|
479
|
+
margin-bottom: 15px;
|
480
|
+
font-size: 12px;
|
481
|
+
}
|
482
|
+
|
483
|
+
#wrapper #sidebar #top #pages a.page {
|
484
|
+
display: block;
|
485
|
+
float: left;
|
486
|
+
background-color: {color:Background};
|
487
|
+
color: #fff;
|
488
|
+
padding: 4px 5px;
|
489
|
+
margin: 0 5px 5px 0;
|
490
|
+
-webkit-border-radius: 3px;
|
491
|
+
-moz-border-radius: 3px;
|
492
|
+
border-radius: 3px;
|
493
|
+
}
|
494
|
+
|
495
|
+
#wrapper #sidebar #top #pages a.page:last-child {
|
496
|
+
margin-right: 0;
|
497
|
+
}
|
498
|
+
|
499
|
+
#wrapper #sidebar #top #pages a.page:hover {
|
500
|
+
opacity: 0.9;
|
501
|
+
filter: alpha(opacity=90);
|
502
|
+
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
|
503
|
+
}
|
504
|
+
|
505
|
+
#wrapper #sidebar #top #description {
|
506
|
+
font-size: 11px;
|
507
|
+
position: relative;
|
508
|
+
top: -18px;
|
509
|
+
}
|
510
|
+
|
511
|
+
#wrapper #sidebar #top #description a {
|
512
|
+
color: {color:Background};
|
513
|
+
text-decoration: underline;
|
514
|
+
}
|
515
|
+
|
516
|
+
#wrapper #sidebar #top #search {
|
517
|
+
background: #fff;
|
518
|
+
border: 1px solid {color:Background};
|
519
|
+
|
520
|
+
-moz-border-radius: 4px;
|
521
|
+
-webkit-border-radius: 4px;
|
522
|
+
border-radius: 4px;
|
523
|
+
}
|
524
|
+
|
525
|
+
#wrapper #sidebar #top #search-scope {
|
526
|
+
padding-top: 5px;
|
527
|
+
font-size: 11px;
|
528
|
+
text-align: center;
|
529
|
+
}
|
530
|
+
|
531
|
+
#wrapper #sidebar #top #search-scope input,
|
532
|
+
#wrapper #sidebar #top #search-scope label {
|
533
|
+
cursor: pointer;
|
534
|
+
}
|
535
|
+
|
536
|
+
#wrapper #sidebar #top #search form {
|
537
|
+
margin: 0;
|
538
|
+
}
|
539
|
+
|
540
|
+
#wrapper #sidebar #top #search form .query {
|
541
|
+
padding: 5px;
|
542
|
+
border: none;
|
543
|
+
background: transparent;
|
544
|
+
outline: none;
|
545
|
+
width: 125px;
|
546
|
+
float: left;
|
547
|
+
color: {color:Background};
|
548
|
+
}
|
549
|
+
|
550
|
+
#wrapper #sidebar #top #search form .submit {
|
551
|
+
background: {color:Background};
|
552
|
+
color: #fff;
|
553
|
+
border: none;
|
554
|
+
padding: 5px 7px;
|
555
|
+
margin: 3px 3px 2px 0;
|
556
|
+
float: right;
|
557
|
+
-moz-border-radius: 3px;
|
558
|
+
-webkit-border-radius: 3px;
|
559
|
+
border-radius: 3px;
|
560
|
+
cursor: pointer;
|
561
|
+
}
|
562
|
+
|
563
|
+
#wrapper #sidebar #top #search form .submit:hover {
|
564
|
+
opacity: 0.9;
|
565
|
+
filter: alpha(opacity=90);
|
566
|
+
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
|
567
|
+
}
|
568
|
+
|
569
|
+
#wrapper #sidebar #top .heading {
|
570
|
+
color: #fff;
|
571
|
+
font-family: helvetica, arial, sans-serif;
|
572
|
+
font-size: 17px;
|
573
|
+
margin-top: 20px;
|
574
|
+
padding: 10px;
|
575
|
+
background-color: {color:Background};
|
576
|
+
-webkit-border-top-left-radius: 4px;
|
577
|
+
-webkit-border-top-right-radius: 4px;
|
578
|
+
-moz-border-radius-topleft: 4px;
|
579
|
+
-moz-border-radius-topright: 4px;
|
580
|
+
border-top-left-radius: 4px;
|
581
|
+
border-top-right-radius: 4px;
|
582
|
+
}
|
583
|
+
|
584
|
+
#wrapper #sidebar #top a .heading {
|
585
|
+
color: #fff;
|
586
|
+
text-decoration: none;
|
587
|
+
}
|
588
|
+
|
589
|
+
#wrapper #sidebar #top .heading#followontumblr {
|
590
|
+
background: url('http://assets.tumblr.com/themes/redux/sidebar-follow-on-verbose.png') 10px center no-repeat {color:Background};
|
591
|
+
text-indent: -9999px;
|
592
|
+
-moz-border-radius: 4px;
|
593
|
+
-webkit-border-radius: 4px;
|
594
|
+
border-radius: 4px;
|
595
|
+
}
|
596
|
+
|
597
|
+
#wrapper #sidebar #top .heading#followontumblr:hover,
|
598
|
+
#wrapper #sidebar #top .heading#twitter:hover {
|
599
|
+
opacity: 0.9;
|
600
|
+
filter: alpha(opacity=90);
|
601
|
+
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
|
602
|
+
}
|
603
|
+
|
604
|
+
#wrapper #sidebar #top .heading#twitter {
|
605
|
+
background: url('http://assets.tumblr.com/themes/redux/sidebar-twitter.png') right center no-repeat {color:Background};
|
606
|
+
}
|
607
|
+
|
608
|
+
#wrapper #sidebar #top .heading#following {
|
609
|
+
background: url('http://assets.tumblr.com/themes/redux/sidebar-following.png') right center no-repeat {color:Background};
|
610
|
+
}
|
611
|
+
|
612
|
+
#wrapper #sidebar #top .content {
|
613
|
+
margin-top: 2px;
|
614
|
+
padding: 7px 10px;
|
615
|
+
background: #eaeaea;
|
616
|
+
color: #666;
|
617
|
+
font-size: 11px;
|
618
|
+
overflow: hidden;
|
619
|
+
}
|
620
|
+
|
621
|
+
#wrapper #sidebar #top a {
|
622
|
+
text-decoration: none;
|
623
|
+
}
|
624
|
+
|
625
|
+
#wrapper #sidebar #top #following-avatars.content {
|
626
|
+
padding: 4px;
|
627
|
+
}
|
628
|
+
|
629
|
+
#wrapper #sidebar #top #following-avatars.content a img {
|
630
|
+
margin: 5px;
|
631
|
+
}
|
632
|
+
|
633
|
+
#wrapper #sidebar #top #buttons {
|
634
|
+
padding: 20px 0 0 0;
|
635
|
+
}
|
636
|
+
|
637
|
+
#wrapper #sidebar #top #buttons .button {
|
638
|
+
width: 35%;
|
639
|
+
height: 21px;
|
640
|
+
float: left;
|
641
|
+
background: left center no-repeat transparent;
|
642
|
+
padding: 2px 0 0 30px;
|
643
|
+
font-size: 14px;
|
644
|
+
}
|
645
|
+
|
646
|
+
#wrapper #sidebar #top #buttons a {
|
647
|
+
color: {color:Background};
|
648
|
+
text-decoration: none;
|
649
|
+
}
|
650
|
+
|
651
|
+
#wrapper #sidebar #top #buttons div {
|
652
|
+
padding-bottom: 10px;
|
653
|
+
}
|
654
|
+
|
655
|
+
#wrapper #sidebar #top #buttons .button#button-rss {
|
656
|
+
background-image: url('http://assets.tumblr.com/themes/redux/button-rss.png?2');
|
657
|
+
}
|
658
|
+
|
659
|
+
#wrapper #sidebar #top #buttons .button#button-random {
|
660
|
+
background-image: url('http://assets.tumblr.com/themes/redux/button-random.png?2');
|
661
|
+
}
|
662
|
+
|
663
|
+
#wrapper #sidebar #top #buttons .button#button-archive {
|
664
|
+
background-image: url('http://assets.tumblr.com/themes/redux/button-archive.png?2');
|
665
|
+
}
|
666
|
+
|
667
|
+
#wrapper #sidebar #top #buttons .button#button-mobile {
|
668
|
+
background-image: url('http://assets.tumblr.com/themes/redux/button-mobile.png?2');
|
669
|
+
}
|
670
|
+
|
671
|
+
#wrapper #sidebar #bottom {
|
672
|
+
background: url('http://assets.tumblr.com/themes/redux/sidebar-bottom.png') top center no-repeat transparent;
|
673
|
+
width: 250px;
|
674
|
+
height: 25px;
|
675
|
+
}
|
676
|
+
|
677
|
+
#wrapper #sidebar #copyright {
|
678
|
+
text-align: center;
|
679
|
+
color: #fff;
|
680
|
+
font-size: 12px;
|
681
|
+
margin-bottom: 10px;
|
682
|
+
}
|
683
|
+
|
684
|
+
#wrapper #sidebar #copyright a {
|
685
|
+
color: #fff;
|
686
|
+
margin-left: 15px;
|
687
|
+
}
|
688
|
+
|
689
|
+
</style>
|
690
|
+
<!--[if lt IE 7.]>
|
691
|
+
<style type="text/css">
|
692
|
+
#wrapper #sidebar #bottom {
|
693
|
+
background: transparent;
|
694
|
+
}
|
695
|
+
|
696
|
+
#wrapper #sidebar #top #avatar {
|
697
|
+
background: none;
|
698
|
+
}
|
699
|
+
|
700
|
+
#wrapper #sidebar #top #avatar img {
|
701
|
+
border: 5px solid #f1f1f1;
|
702
|
+
}
|
703
|
+
|
704
|
+
#wrapper #sidebar #top .heading#followontumblr {
|
705
|
+
background-image: none;
|
706
|
+
text-indent: 0;
|
707
|
+
}
|
708
|
+
|
709
|
+
#wrapper #sidebar #top .heading#twitter {
|
710
|
+
background-image: none;
|
711
|
+
}
|
712
|
+
|
713
|
+
#wrapper #sidebar #top .heading#following {
|
714
|
+
background-image: none;
|
715
|
+
}
|
716
|
+
|
717
|
+
#wrapper #content .post .audio .player {
|
718
|
+
float: none;
|
719
|
+
}
|
720
|
+
|
721
|
+
#wrapper #content .post .audio .meta {
|
722
|
+
display: none;
|
723
|
+
float: none;
|
724
|
+
}
|
725
|
+
</style>
|
726
|
+
<![endif]-->
|
727
|
+
|
728
|
+
<!--[if lt IE 8.]>
|
729
|
+
<style type="text/css">
|
730
|
+
#wrapper #content .bottom {
|
731
|
+
background: transparent;
|
732
|
+
}
|
733
|
+
|
734
|
+
#wrapper #content .post .footer {
|
735
|
+
background: transparent;
|
736
|
+
color: #000;
|
737
|
+
}
|
738
|
+
|
739
|
+
#wrapper #content .post .audio {
|
740
|
+
float: none;
|
741
|
+
background: transparent;
|
742
|
+
}
|
743
|
+
|
744
|
+
#wrapper #content .post .notecontainer .notes {
|
745
|
+
padding: 0;
|
746
|
+
margin: 0;
|
747
|
+
}
|
748
|
+
</style>
|
749
|
+
<![endif]-->
|
750
|
+
<style type="text/css">{CustomCSS}</style>
|
751
|
+
</head>
|
752
|
+
<body>
|
753
|
+
<div id="wrapper">
|
754
|
+
<div id="title">
|
755
|
+
<a href="/">
|
756
|
+
{block:IfHeaderImage}<img src="{image:Header}" />{/block:IfHeaderImage}
|
757
|
+
{block:IfNotHeaderImage}{Title}{/block:IfNotHeaderImage}
|
758
|
+
</a>
|
759
|
+
</div>
|
760
|
+
|
761
|
+
<div id="content">
|
762
|
+
|
763
|
+
{block:SearchPage}
|
764
|
+
<div id="searchresults" class="searchresultcount">{SearchResultCount} results for <strong>"{SearchQuery}"</strong></div>
|
765
|
+
{/block:SearchPage}
|
766
|
+
|
767
|
+
{block:NoSearchResults}
|
768
|
+
<style type="text/css">
|
769
|
+
.searchresultcount {
|
770
|
+
display: none;
|
771
|
+
}
|
772
|
+
</style>
|
773
|
+
<div id="searchresults">No results for <strong>"{SearchQuery}"</strong></div>
|
774
|
+
{/block:NoSearchResults}
|
775
|
+
|
776
|
+
{block:Posts}
|
777
|
+
<div class="post">
|
778
|
+
|
779
|
+
{block:Photo}
|
780
|
+
<div class="media">{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}" />{LinkCloseTag}</div>
|
781
|
+
{block:Caption}<div class="copy">{Caption}</div>{/block:Caption}
|
782
|
+
{/block:Photo}
|
783
|
+
|
784
|
+
{block:Video}
|
785
|
+
<div class="media">{Video-500}</div>
|
786
|
+
{block:Caption}<div class="copy">{Caption}</div>{/block:Caption}
|
787
|
+
{/block:Video}
|
788
|
+
|
789
|
+
{block:Audio}
|
790
|
+
{block:IfShowAlbumArtOnAudioPosts}
|
791
|
+
{block:AlbumArt}
|
792
|
+
<div class="album_art">
|
793
|
+
<img src="{AlbumArtURL}" alt="{block:Artist}{Artist}{/block:Artist}{block:TrackName} - {TrackName}{/block:TrackName}" style="margin-bottom: 10px" />
|
794
|
+
</div>
|
795
|
+
{/block:AlbumArt}
|
796
|
+
{/block:IfShowAlbumArtOnAudioPosts}
|
797
|
+
|
798
|
+
<div class="audio">
|
799
|
+
<div class="player">{AudioPlayerWhite}</div>
|
800
|
+
<div class="meta">{PlayCountWithLabel}{block:ExternalAudio} • <a href="{ExternalAudioURL}">download</a>{/block:ExternalAudio}</div>
|
801
|
+
<div class="clear"></div>
|
802
|
+
</div>
|
803
|
+
<div class="clear"></div>
|
804
|
+
{block:Caption}<div class="copy">{Caption}</div>{/block:Caption}
|
805
|
+
{/block:Audio}
|
806
|
+
|
807
|
+
{block:Quote}
|
808
|
+
<div class="quote {Length}">{Quote}</div>
|
809
|
+
<div class="copy">
|
810
|
+
<div class="quotebg">“</div>
|
811
|
+
{block:Source}
|
812
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
813
|
+
<tr>
|
814
|
+
<td valign="top" style="width: 20px">—</td>
|
815
|
+
<td valign="top" class="quote_source">
|
816
|
+
{Source}
|
817
|
+
</td>
|
818
|
+
</tr>
|
819
|
+
</table>
|
820
|
+
{/block:Source}
|
821
|
+
</div>
|
822
|
+
{/block:Quote}
|
823
|
+
|
824
|
+
{block:Text}
|
825
|
+
{block:Title}<div class="title">{Title}</div>{/block:Title}
|
826
|
+
<div class="copy">{Body}</div>
|
827
|
+
{/block:Text}
|
828
|
+
|
829
|
+
{block:Answer}
|
830
|
+
<div class="question">
|
831
|
+
<div class="nipple"></div>
|
832
|
+
{Question}
|
833
|
+
</div>
|
834
|
+
<div class="asker_container"><img src="{AskerPortraitURL-24}">{Asker}</div>
|
835
|
+
<div class="copy">{Answer}</div>
|
836
|
+
{/block:Answer}
|
837
|
+
|
838
|
+
{block:Chat}
|
839
|
+
{block:Title}<div class="title">{Title}</div>{/block:Title}
|
840
|
+
<div class="chat">
|
841
|
+
<div class="lines">
|
842
|
+
{block:Lines}
|
843
|
+
<div class="line {Alt}">{block:Label}<strong>{Label}</strong>{/block:Label} {Line}</div>
|
844
|
+
{/block:Lines}
|
845
|
+
</div>
|
846
|
+
</div>
|
847
|
+
<div class="clear"></div>
|
848
|
+
<div style="height: 10px"></div>
|
849
|
+
{/block:Chat}
|
850
|
+
|
851
|
+
{block:Link}
|
852
|
+
<div class="link"><a href="{URL}" {Target}>{Name} »</a></div>
|
853
|
+
{block:Description}<div class="copy">{Description}</div>{/block:Description}
|
854
|
+
{/block:Link}
|
855
|
+
|
856
|
+
{block:Date}
|
857
|
+
<a href="{Permalink}">
|
858
|
+
<div class="footer">
|
859
|
+
<div class="date">
|
860
|
+
{block:Reblog}Reblogged{/block:Reblog}
|
861
|
+
{block:NotReblog}Posted{/block:NotReblog}
|
862
|
+
|
863
|
+
{TimeAgo}
|
864
|
+
|
865
|
+
{block:Reblog}from {ReblogParentName} {block:RebloggedFromReblog}(originally from {ReblogRootName}){/block:RebloggedFromReblog}{/block:Reblog}
|
866
|
+
{block:FromBookmarklet}from bookmarklet{/block:FromBookmarklet}
|
867
|
+
{block:FromMobile}from mobile{/block:FromMobile}
|
868
|
+
</div>
|
869
|
+
<div class="notes">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} {block:IfDisqusShortname}{block:NoteCount}•{/block:NoteCount} <a href="{Permalink}#disqus_thread">view comments</a>{/block:IfDisqusShortname}</div>
|
870
|
+
<div class="clear"></div>
|
871
|
+
</div>
|
872
|
+
</a>
|
873
|
+
{/block:Date}
|
874
|
+
|
875
|
+
{block:IfShowTags}
|
876
|
+
{block:HasTags}<div class="footer"><div class="tags">Tagged: {block:Tags}<a href="{TagURL}">{Tag}</a><span class="tag-commas">, </span>{/block:Tags}.</div></div>{/block:HasTags}
|
877
|
+
{/block:IfShowTags}
|
878
|
+
|
879
|
+
{block:PostNotes}<div class="notecontainer">{PostNotes}</div>{/block:PostNotes}
|
880
|
+
|
881
|
+
{block:IfDisqusShortname}
|
882
|
+
{block:Permalink}
|
883
|
+
<div class="notecontainer" style="margin: 20px 0 1px 0; padding: 1px 10px 10px 10px;">
|
884
|
+
<div id="disqus_thread"></div>
|
885
|
+
<script type="text/javascript" src="http://disqus.com/forums/{text:Disqus Shortname}/embed.js"></script>
|
886
|
+
<noscript><a href="http://{text:Disqus Shortname}.disqus.com/?url=ref">View the discussion thread.</a></noscript>
|
887
|
+
</div>
|
888
|
+
<div style="text-align: right; margin-top: 5px">
|
889
|
+
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
|
890
|
+
</div>
|
891
|
+
{/block:Permalink}
|
892
|
+
{/block:IfDisqusShortname}
|
893
|
+
|
894
|
+
</div>
|
895
|
+
<div class="bottom"></div>
|
896
|
+
{/block:Posts}
|
897
|
+
|
898
|
+
{block:Pagination}
|
899
|
+
<div id="navigation">
|
900
|
+
{block:PreviousPage}<a href="{PreviousPage}">← previous page</a>{/block:PreviousPage}
|
901
|
+
{block:NextPage}<a href="{NextPage}">next page →</a>{/block:NextPage}
|
902
|
+
</div>
|
903
|
+
{/block:Pagination}
|
904
|
+
|
905
|
+
</div>
|
906
|
+
|
907
|
+
<div id="sidebar">
|
908
|
+
<div id="top">
|
909
|
+
<div id="avatar"><a href="/"><img src="{PortraitURL-128}" /></a></div>
|
910
|
+
<div id="description">{Description}</div>
|
911
|
+
|
912
|
+
{block:HasPages}
|
913
|
+
<div id="pages">
|
914
|
+
{block:Pages}<a href="{URL}" class="page">{Label}</a>{/block:Pages}
|
915
|
+
<div class="clear"></div>
|
916
|
+
</div>
|
917
|
+
{/block:HasPages}
|
918
|
+
|
919
|
+
<div id="search">
|
920
|
+
<form action="/search" method="get" id="search-form">
|
921
|
+
<input type="hidden" name="t" value="{Name}" />
|
922
|
+
<input type="hidden" name="scope" value="all_of_tumblr" />
|
923
|
+
<input type="text" name="q" class="query" value="{SearchQuery}" />
|
924
|
+
<input type="submit" value="Search" class="submit" />
|
925
|
+
<div class="clear"></div>
|
926
|
+
</form>
|
927
|
+
</div>
|
928
|
+
<div id="search-scope">
|
929
|
+
<input type="radio" id="search-scope-me" name="scope" checked onclick="document.getElementById('search-form').action='/search'" /> <label for="search-scope-me" onclick="document.getElementById('search-form').action='/search'">My Blog</label>
|
930
|
+
<input type="radio" id="search-scope-all" name="scope" onclick="document.getElementById('search-form').action='http://tumblr.com/search'" /> <label for="search-scope-all" onclick="document.getElementById('search-form').action='http://tumblr.com/search'">All of Tumblr</label>
|
931
|
+
</div>
|
932
|
+
|
933
|
+
<a href="http://www.tumblr.com/follow/{Name}"><div class="heading" id="followontumblr">Follow on Tumblr</div></a>
|
934
|
+
|
935
|
+
{block:Twitter}
|
936
|
+
<div id="twitterwrapper" style="display: none">
|
937
|
+
<a href="http://twitter.com/{TwitterUsername}" style="text-decoration: none"><div class="heading" id="twitter">Latest Tweets</div></a>
|
938
|
+
<div id="tweetcontainer"></div>
|
939
|
+
<script type="text/javascript">
|
940
|
+
function recent_tweets(data) {
|
941
|
+
document.getElementById("twitterwrapper").style.display = "block";
|
942
|
+
for(i = 0; i < data.length; i++) {
|
943
|
+
document.getElementById("tweetcontainer").innerHTML = document.getElementById("tweetcontainer").innerHTML + '<a href="http://twitter.com/{TwitterUsername}/status/' + data[i].id + '"><div class="content">' + data[i].text + '</div></a>';
|
944
|
+
}
|
945
|
+
}
|
946
|
+
</script>
|
947
|
+
</div>
|
948
|
+
{/block:Twitter}
|
949
|
+
|
950
|
+
{block:IfShowPeopleIFollow}
|
951
|
+
{block:Following}
|
952
|
+
<div class="heading" id="following">Following</div>
|
953
|
+
<div class="content" id="following-avatars">
|
954
|
+
{block:Followed}<a href="{FollowedURL}"><img src="{FollowedPortraitURL-40}" /></a>{/block:Followed}
|
955
|
+
</div>
|
956
|
+
{/block:Following}
|
957
|
+
{/block:IfShowPeopleIFollow}
|
958
|
+
|
959
|
+
<div id="buttons">
|
960
|
+
<div class="row">
|
961
|
+
<div class="button" id="button-rss"><a href="{RSS}">RSS Feed</a></div>
|
962
|
+
<div class="button" id="button-random"><a href="/random">Random</a></div>
|
963
|
+
</div>
|
964
|
+
<div class="clear"></div>
|
965
|
+
<div class="row">
|
966
|
+
<div class="button" id="button-archive"><a href="/archive">Archive</a></div>
|
967
|
+
<div class="button" id="button-mobile"><a href="/mobile">Mobile</a></div>
|
968
|
+
</div>
|
969
|
+
<div class="clear"></div>
|
970
|
+
</div>
|
971
|
+
|
972
|
+
</div>
|
973
|
+
|
974
|
+
<div id="bottom"></div>
|
975
|
+
<div id="copyright">© {CopyrightYears} <a href="http://www.tumblr.com">Powered by Tumblr</a></div>
|
976
|
+
</div>
|
977
|
+
|
978
|
+
<div class="clear"></div>
|
979
|
+
</div>
|
980
|
+
|
981
|
+
{block:Twitter}
|
982
|
+
<script type="text/javascript" src="/tweets.js"></script>
|
983
|
+
{/block:Twitter}
|
984
|
+
|
985
|
+
{block:IfDisqusShortname}
|
986
|
+
<script type="text/javascript">
|
987
|
+
//<![CDATA[
|
988
|
+
(function() {
|
989
|
+
var links = document.getElementsByTagName('a');
|
990
|
+
var query = '?';
|
991
|
+
for(var i = 0; i < links.length; i++) {
|
992
|
+
if(links[i].href.indexOf('#disqus_thread') >= 0) {
|
993
|
+
query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
|
994
|
+
}
|
995
|
+
}
|
996
|
+
document.write('<script charset="utf-8" type="text/javascript" src="http://disqus.com/forums/{text:Disqus Shortname}/get_num_replies.js' + query + '"></' + 'script>');
|
997
|
+
})();
|
998
|
+
//]]>
|
999
|
+
</script>
|
1000
|
+
{/block:IfDisqusShortname}
|
1001
|
+
</body>
|
1002
|
+
</html>
|