SHOW:
|
|
- or go back to the newest paste.
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
2 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
3 | ||
4 | <!-- | |
5 | Bad Days Theme by lsaac.tumblr.com | |
6 | ||
7 | Please remember to leave at least one credit link visible and as with all of my themes this is not a base code so please do not use it as such, thank you :-) | |
8 | --> | |
9 | ||
10 | <head> | |
11 | <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js" type="text/javascript"><!--mce:0--></script> | |
12 | <script src="toggle.js" type="text/javascript"><!--mce:1--></script> | |
13 | <script type="text/javascript"> | |
14 | $(document).ready(function(){ | |
15 | $(".description").hide(); | |
16 | $(".about").click(function(){ | |
17 | $('.description').slideToggle("fast"); | |
18 | return true; | |
19 | }); | |
20 | }); | |
21 | </script> | |
22 | ||
23 | <meta name="color:Background" content="#fff" /> | |
24 | <meta name="color:Text" content="#333333" /> | |
25 | <meta name="color:Links" content="#555555"/> | |
26 | <meta name="color:Hover" content="#dad8d8"/> | |
27 | <meta name="color:Scrollbar" content="#666666"/> | |
28 | <meta name="color:Scrollbar Background" content="#dad8d8"/> | |
29 | <meta name="color:Content" content="#dad8d8"/> | |
30 | <meta name="color:Accent" content="#ebebeb"/> | |
31 | ||
32 | ||
33 | <meta name="image:Header" content=""/> | |
34 | <meta name="image:Background" content=""/> | |
35 | ||
36 | <meta name="text:First custom link title" content=""/> | |
37 | <meta name="text:First custom link url" content=""/> | |
38 | <meta name="text:Second custom link title" content=""/> | |
39 | <meta name="text:Second custom link url" content=""/> | |
40 | <meta name="text:Third custom link title" content=""/> | |
41 | <meta name="text:Third custom link url" content=""/> | |
42 | <meta name="text:Fourth custom link title" content=""/> | |
43 | <meta name="text:Fourth custom link url" content=""/> | |
44 | <meta name="text:Fifth custom link title" content=""/> | |
45 | <meta name="text:Fifth custom link url" content=""/> | |
46 | <meta name="text:Sixth custom link title" content=""/> | |
47 | <meta name="text:Sixth custom link url" content=""/> | |
48 | <meta name="text:Title Font Size" content="60"/> | |
49 | <meta name="text:Header Size" content="500"/> | |
50 | ||
51 | <meta name="if:First custom link" content="0"/> | |
52 | <meta name="if:Second custom link" content="0"/> | |
53 | <meta name="if:Third custom link" content="0"/> | |
54 | <meta name="if:Fourth custom link" content="0"/> | |
55 | <meta name="if:Fifth custom link" content="0"/> | |
56 | <meta name="if:Sixth custom link" content="0"/> | |
57 | <meta name="if:Submit link" content="0"/> | |
58 | <meta name="if:Archive link" content="1"/> | |
59 | <meta name="if:Home link" content="1"/> | |
60 | <meta name="if:Message link" content="1"/> | |
61 | <meta name="if:Five columns" content="0" /> | |
62 | <meta name="if:Four columns" content="1" /> | |
63 | ||
64 | <meta name="if:Inverted Fade" content="1" /> | |
65 | <meta name="if:Faded Images" content="0" /> | |
66 | <meta name="if:Cross cursor" content="1"/> | |
67 | <meta name="if:Show Header" content="0"/> | |
68 | <meta name="if:Animated Post Load" content="1"/> | |
69 | <meta name="if:Show Note Count on Hover" content="1"/> | |
70 | <meta name="if:Drop Down Description" content="1"/> | |
71 | ||
72 | <meta name="font:Body" content="Lucida Sans"/> | |
73 | <meta name="font:Title" content="Courier New"/> | |
74 | ||
75 | <title>{Title}</title> | |
76 | <link rel="shortcut icon" href="{Favicon}"> | |
77 | <link rel="alternate" type="application/rss+xml" href="{RSS}"> | |
78 | <link rel="shortcut icon" href="{Favicon}"> | |
79 | <title>Untitled Document</title> | |
80 | <link rel="shortcut icon" href="{Favicon}"> | |
81 | <link rel="alternate" type="application/rss+xml" href="{RSS}"> | |
82 | ||
83 | {block:Description} | |
84 | <meta name="description" content="{MetaDescription}" /> | |
85 | {/block:Description} | |
86 | ||
87 | ||
88 | <link href='http://fonts.googleapis.com/css?family=PT+Serif' rel='stylesheet' type='text/css'> | |
89 | ||
90 | <style type="text/css"> | |
91 | {CustomCSS} | |
92 | ||
93 | p{ | |
94 | margin:0px; | |
95 | padding:0px; | |
96 | } | |
97 | ||
98 | #tumblr_controls{ | |
99 | position:absolute; | |
100 | margin-top:0px; | |
101 | margin-left:0px; | |
102 | z-index:99999; | |
103 | } | |
104 | ||
105 | #tumblr_controls{ | |
106 | -webkit-transition: opacity 0.2s linear; | |
107 | opacity: 0.6; | |
108 | } | |
109 | #tumblr_controls:hover{ | |
110 | -webkit-transition: opacity 0.2s linear; | |
111 | opacity: 1; | |
112 | } | |
113 | ||
114 | a{ | |
115 | text-decoration: none; | |
116 | color:{color:links}; | |
117 | -moz-transition: all 0.3s ease-out; | |
118 | -o-transition: all 0.3s ease-out; | |
119 | -webkit-transition: all 0.3s ease-out; | |
120 | transition: all 0.3s ease-out; | |
121 | {block:ifcrosscursor} | |
122 | cursor: crosshair; | |
123 | {/block:ifcrosscursor} | |
124 | } | |
125 | ||
126 | a:hover{ | |
127 | color:{color:hover}; | |
128 | -moz-transition: all 0.3s ease-out; | |
129 | -o-transition: all 0.3s ease-out; | |
130 | -webkit-transition: all 0.3s ease-out; | |
131 | transition: all 0.3s ease-out; | |
132 | {block:ifcrosscursor} | |
133 | cursor: crosshair; | |
134 | {/block:ifcrosscursor} | |
135 | } | |
136 | ||
137 | body{ | |
138 | color:{color:Text}; | |
139 | background-color:{color:Background}; | |
140 | background-image:url({image:Background}); | |
141 | background-attachment: fixed; background-repeat: repeat; | |
142 | {block:ifcrosscursor} | |
143 | font-size:9px; | |
144 | text-align: center; | |
145 | font-family: {font:Body}; | |
146 | line-height:10px; | |
147 | overflow-x:hidden; | |
148 | {block:ifcrosscursor} | |
149 | cursor: crosshair; | |
150 | {/block:ifcrosscursor} | |
151 | } | |
152 | ||
153 | #content{ | |
154 | margin: auto auto auto auto ; | |
155 | width:100%; | |
156 | top:0px; | |
157 | position:relative; | |
158 | } | |
159 | ||
160 | #content .posts{ | |
161 | {block:iffourcolumns} | |
162 | width:1080px; | |
163 | {/block:iffourcolumns} | |
164 | {block:iffivecolumns} | |
165 | width:1350px; | |
166 | {/block:iffivecolumns} | |
167 | font-family: {font:Body}; | |
168 | margin: 10px 0px 0px 30px; | |
169 | {block:iffourcolumns} | |
170 | margin-left: 115px; | |
171 | {/block:iffourcolumns} | |
172 | {block:iffivecolumns} | |
173 | margin-left: -3px; | |
174 | {block:iffivecolumns} | |
175 | {block:PermalinkPage} | |
176 | width:840px; | |
177 | {/block:PermalinkPage} | |
178 | {block:ifcrosscursor} | |
179 | cursor: crosshair; | |
180 | {/block:ifcrosscursor} | |
181 | } | |
182 | ||
183 | #content .entry{ | |
184 | {block:IndexPage} | |
185 | width:250px; | |
186 | margin-right:10px; | |
187 | margin-left:10px; | |
188 | margin-bottom:8px; | |
189 | margin-top:10px; | |
190 | {block:ifanimatedpostload} | |
191 | -moz-transition: all 3.9s ease-out; | |
192 | -o-transition: all 3.9s ease-out; | |
193 | -webkit-transition: all 3.9s ease-out; | |
194 | transition: all 3.9s ease-out; | |
195 | {/block:ifanimatedpostload} | |
196 | {block:ifcrosscursor} | |
197 | cursor: crosshair; | |
198 | {/block:ifcrosscursor} | |
199 | {/block:IndexPage} | |
200 | {block:PermalinkPage} | |
201 | width:840px; | |
202 | margin-bottom:50px; | |
203 | margin-left:30px; | |
204 | {/block:PermalinkPage} | |
205 | } | |
206 | ||
207 | ||
208 | #content .entry img{ | |
209 | {block:IndexPage} | |
210 | max-width:250px; | |
211 | {/block:IndexPage} | |
212 | } | |
213 | ||
214 | .perma { | |
215 | opacity: 0.0; | |
216 | filter: alpha(opacity = 0); | |
217 | z-index:9999991; | |
218 | display: inline-block; | |
219 | position: absolute; | |
220 | {block:ifshownotecountonhover} | |
221 | bottom: 0px; | |
222 | {block:ifshownotecountonhover} | |
223 | {block:ifnotshownotecountonhover} | |
224 | bottom: 4px; | |
225 | {block:ifnotshownotecountonhover} | |
226 | left: 5px; | |
227 | -moz-transition: all 0.3s ease-out; | |
228 | -o-transition: all 0.3s ease-out; | |
229 | -webkit-transition: all 0.3s ease-out; | |
230 | transition: all 0.3s ease-out; | |
231 | } | |
232 | ||
233 | .entry:hover .perma { | |
234 | opacity: 1; | |
235 | filter: alpha(opacity = 100); | |
236 | } | |
237 | ||
238 | .likep { | |
239 | width: 21px; | |
240 | height: 20px; | |
241 | overflow: hidden; | |
242 | z-index: 9999999; | |
243 | display: inline-block; | |
244 | } | |
245 | ||
246 | .rep { | |
247 | width: 24px; | |
248 | height: 20px; | |
249 | overflow: hidden; | |
250 | z-index: 9999999; | |
251 | display: inline-block; | |
252 | } | |
253 | ||
254 | .likep a:hover { | |
255 | background-position: 0px 0px; | |
256 | } | |
257 | ||
258 | .likep a { | |
259 | background-image: url("http://static.tumblr.com/ykziu7r/ICbmd11nu/like.png"); | |
260 | background-position: 0px 0px; | |
261 | display: block; | |
262 | z-index: 9999999; | |
263 | } | |
264 | ||
265 | .likep img { | |
266 | width: 21px; | |
267 | height: 20px; | |
268 | } | |
269 | ||
270 | .rep img{ | |
271 | width: 24px; | |
272 | height: 20px; | |
273 | line-height: 30px; | |
274 | display: inline; | |
275 | -webkit-filter: invert(100%) | |
276 | } | |
277 | ||
278 | .not { display: inline-block; | |
279 | background: rgba(0, 0, 0, .55); | |
280 | height: 20px; | |
281 | top: -6px; | |
282 | padding: 0 5px; | |
283 | font: 11px/20px arial,sans-serif; | |
284 | line-height: 20px; | |
285 | color: #fff; | |
286 | padding-left: 4px; | |
287 | padding-right: 4px; | |
288 | -webkit-border-radius: 3px; | |
289 | -moz-border-radius: 3px; | |
290 | border-radius: 3px; | |
291 | position: relative; | |
292 | -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5); | |
293 | -moz-box-shadow: inset 0 0 1px rgba(0,0,0,0.5); | |
294 | box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5); | |
295 | -webkit-filter: invert(100%) | |
296 | } | |
297 | ||
298 | .not a, .not:hover a, .not a:hover { | |
299 | color: #ffffff!important; | |
300 | font-weight: bold; | |
301 | font-family: Arial, Helvetica, sans-serif; | |
302 | } | |
303 | ||
304 | .entry:hover .not, .entry:hover .rep, .entry:hover .likep { | |
305 | opacity: 1; | |
306 | filter: alpha(opacity = 100); | |
307 | } | |
308 | ||
309 | .not:hover , .rep:hover, .likep:hover { | |
310 | opacity: 1!important; | |
311 | filter: alpha(opacity = 100)!important; | |
312 | } | |
313 | ||
314 | .top{ | |
315 | width:100%; | |
316 | text-align:center; | |
317 | margin: -10px auto ; | |
318 | {block:ifcrosscursor} | |
319 | cursor: crosshair; | |
320 | {/block:ifcrosscursor} | |
321 | z-index:99; | |
322 | margin-bottom:0px; | |
323 | margin-left:-10px; | |
324 | padding-right:22px; | |
325 | background-color:{color:Content}; | |
326 | font-family: {font:Body}; | |
327 | } | |
328 | ||
329 | ||
330 | {block:ifinvertedfade} | |
331 | img{ | |
332 | -webkit-transition: opacity 0.3s linear; | |
333 | opacity: 1; | |
334 | } | |
335 | img:hover{ | |
336 | -webkit-transition: opacity 0.3s linear; | |
337 | opacity: 0.7; | |
338 | } | |
339 | {/block:ifinvertedfade} | |
340 | ||
341 | {block:iffadedimages} | |
342 | img{ | |
343 | -webkit-transition: opacity 0.3s linear; | |
344 | opacity: 0.8; | |
345 | } | |
346 | img:hover{ | |
347 | -webkit-transition: opacity 0.3s linear; | |
348 | opacity: 1; | |
349 | } | |
350 | {/block:iffadedimages} | |
351 | ||
352 | .h1{ | |
353 | display:block; | |
354 | font-size:27px; | |
355 | line-height:20px; | |
356 | text-align: center; | |
357 | margin-bottom: 10px; | |
358 | font-family: {font:Body}; | |
359 | } | |
360 | ||
361 | .h2{ | |
362 | font-size:22px; | |
363 | line-height:15px; | |
364 | margin-bottom:5px; | |
365 | font-family: {font:Body}; | |
366 | display:block; | |
367 | text-align:center; | |
368 | } | |
369 | ||
370 | .h3{ | |
371 | font-size:{text:Title Font Size}px; | |
372 | line-height:{text:Title Font Size}px; | |
373 | text-align:center; | |
374 | font-family: {font:Title}; | |
375 | } | |
376 | ||
377 | #h4{ | |
378 | width:530px; | |
379 | font-size:10px; | |
380 | line-height:12px; | |
381 | letter-spacing:0px; | |
382 | text-align:center; | |
383 | font-family: {font:Body}; | |
384 | margin:10px auto; | |
385 | } | |
386 | ||
387 | .h7{ | |
388 | width:200px; | |
389 | font-size:10px; | |
390 | line-height:10px; | |
391 | text-transform:uppercase; | |
392 | font-family: {font:Body}; | |
393 | letter-spacing:1px; | |
394 | } | |
395 | ||
396 | .nav{ | |
397 | text-align:center; | |
398 | margin-top:0px; | |
399 | margin-bottom:0px; | |
400 | font-family: {font:Body}; | |
401 | } | |
402 | ||
403 | .notes{ | |
404 | width:840px; | |
405 | padding-left:0px; | |
406 | text-align:left; | |
407 | } | |
408 | ||
409 | .permalink{ | |
410 | display:block; | |
411 | text-align:right; | |
412 | padding:2px; | |
413 | border-width:0px; | |
414 | text-transform:uppercase; | |
415 | font-family:{font:Body}; | |
416 | margin-top:5px; | |
417 | border-bottom-style:solid; | |
418 | } | |
419 | ||
420 | .permalink{ | |
421 | -webkit-transition: opacity 0.3s linear; | |
422 | opacity: 0.3; | |
423 | -moz-transition: all 0.3s ease-out; | |
424 | -o-transition: all 0.3s ease-out; | |
425 | -webkit-transition: all 0.3s ease-out; | |
426 | transition: all 0.3s ease-out; | |
427 | } | |
428 | .permalink:hover{ | |
429 | -webkit-transition: opacity 0.3s linear; | |
430 | opacity: 1; | |
431 | -moz-transition: all 0.3s ease-out; | |
432 | -o-transition: all 0.3s ease-out; | |
433 | -webkit-transition: all 0.3s ease-out; | |
434 | transition: all 0.3s ease-out; | |
435 | } | |
436 | ||
437 | .quote{ | |
438 | font-size:17px; | |
439 | line-height:20px; | |
440 | text-transform:none; | |
441 | margin-bottom:5px; | |
442 | font-family: {font:Body}; | |
443 | } | |
444 | ||
445 | .audio{ | |
446 | {block:IndexPage} | |
447 | width:240px; | |
448 | {/block:IndexPage} | |
449 | {block:PermalinkPage} | |
450 | width:858px; | |
451 | {/block:PermalinkPage} | |
452 | background-color:#e3e3e3; | |
453 | padding:5px; | |
454 | margin-top:-2px; | |
455 | margin-bottom:1px; | |
456 | } | |
457 | ||
458 | .audiocap, .videocap{ | |
459 | display:block; | |
460 | padding:0px; | |
461 | } | |
462 | ||
463 | .albumart, .albumart img{ | |
464 | {block:IndexPage} | |
465 | width:250px; | |
466 | {/block:IndexPage} | |
467 | {block:PermalinkPage} | |
468 | width:870px; | |
469 | {/block:PermalinkPage} | |
470 | } | |
471 | ||
472 | div.video embed, | |
473 | div.post div.video object { | |
474 | {block:IndexPage} | |
475 | width:250px !important; | |
476 | height:150px !important; | |
477 | {/block:IndexPage} | |
478 | {block:PermalinkPage} | |
479 | width:500px !important; | |
480 | height:400px !important; | |
481 | {/block:PermalinkPage} | |
482 | } | |
483 | ||
484 | .question{ | |
485 | margin-bottom:5px; | |
486 | font-size:10px; | |
487 | line-height:10px; | |
488 | display:block; | |
489 | font-family: {font:Body}; | |
490 | } | |
491 | ||
492 | .asker{ | |
493 | font-family: {font:Body}; | |
494 | font-size:10px; | |
495 | line-height:10px; | |
496 | } | |
497 | ||
498 | .answer{ | |
499 | padding:3px; | |
500 | font-size:10px; | |
501 | line-height:10px; | |
502 | font-family: {font:Body}; | |
503 | color: {color:text}; | |
504 | background-color:{color:Accent}; | |
505 | } | |
506 | ||
507 | .nav {font-size:10px; | |
508 | } | |
509 | ||
510 | #link{ | |
511 | width:840px; | |
512 | height:auto; | |
513 | margin-bottom:50px; | |
514 | margin-top:50px; | |
515 | padding:20px; | |
516 | background-color:{color:Accent}; | |
517 | } | |
518 | ||
519 | #chat{ | |
520 | width:840px; | |
521 | height:auto; | |
522 | margin-bottom:50px; | |
523 | margin-top:50px; | |
524 | padding:20px; | |
525 | background-color:{color:Accent}; | |
526 | } | |
527 | ||
528 | #quote{ | |
529 | width:840px; | |
530 | height:auto; | |
531 | margin-bottom:50px; | |
532 | margin-top:50px; | |
533 | padding:20px; | |
534 | background-color:{color:Accent}; | |
535 | } | |
536 | ||
537 | #text{ | |
538 | width:840px; | |
539 | height:auto; | |
540 | margin-bottom:50px; | |
541 | margin-top:50px; | |
542 | padding:20px; | |
543 | background-color:{color:Accent}; | |
544 | } | |
545 | ||
546 | #vid{ | |
547 | width:840px; | |
548 | height:auto; | |
549 | margin-bottom:50px; | |
550 | margin-top:50px; | |
551 | padding:20px; | |
552 | background-color:{color:Accent}; | |
553 | } | |
554 | ||
555 | #photoset{ | |
556 | width:840px; | |
557 | height:auto; | |
558 | margin-bottom:50px; | |
559 | margin-top:50px; | |
560 | padding:20px; | |
561 | background-color:{color:Accent}; | |
562 | } | |
563 | ||
564 | #ans{ | |
565 | width:855px; | |
566 | height:auto; | |
567 | margin-bottom:50px; | |
568 | margin-top:50px; | |
569 | padding:20px; | |
570 | background-color:{color:Accent}; | |
571 | } | |
572 | ||
573 | a {color:;text-decoration:none;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;} | |
574 | ||
575 | .fufu {width:227px;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;} | |
576 | ||
577 | .fufu:hover {-webkit-transform: translate(1em,0);-moz-transform: translate(1em,0);-o-transform: translate(1em,0);} | |
578 | ||
579 | #biter | |
580 | ||
581 | #bite a {display:block} | |
582 | ||
583 | #bite .death {margin-top:-{text:Title Font Size}px;filter: alpha(opacity = 0);opacity:0;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;} | |
584 | ||
585 | #bite:hover .death {margin-top:0px;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out; filter: alpha(opacity = 100);filter: alpha(opacity = 100);opacity:100;} | |
586 | ||
587 | ::-webkit-scrollbar-thumb:vertical { | |
588 | background-color:{color:Scrollbar}; | |
589 | height:100px; | |
590 | } | |
591 | ||
592 | ::-webkit-scrollbar-thumb:horizontal { | |
593 | background-color:{color:Scrollbar}; | |
594 | height:10px; | |
595 | } | |
596 | ||
597 | ::-webkit-scrollbar { | |
598 | height:10px; | |
599 | width:8px; | |
600 | background-color:{color:Scrollbar Background}; | |
601 | border-left-style:solid; | |
602 | border-width:1px; | |
603 | border-color:{color:Scrollbar}; | |
604 | } | |
605 | ||
606 | </style> | |
607 | <script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script> | |
608 | <script type="text/javascript" src="http://static.tumblr.com/imovwvl/rSGl20lfv/masonry.js"> | |
609 | </script> | |
610 | <script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script> | |
611 | <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script> | |
612 | <script type="text/javascript"> | |
613 | ||
614 | $(window).load(function () { | |
615 | $('.posts').masonry(), | |
616 | $('.masonryWrap').infinitescroll({ | |
617 | navSelector : "div#navigation", | |
618 | // selector for the paged navigation (it will be hidden) | |
619 | nextSelector : "div#navigation a#nextPage", | |
620 | // selector for the NEXT link (to page 2) | |
621 | itemSelector : ".entry", | |
622 | // selector for all items you'll retrieve | |
623 | bufferPx : 10000, | |
624 | extraScrollPx: 11000, | |
625 | loadingImg : "", | |
626 | loadingText : "<em></em>", | |
627 | }, | |
628 | // call masonry as a callback. | |
629 | function() { $('.posts').masonry({ appendedContent: $(this) }); } | |
630 | ); | |
631 | }); | |
632 | </script> | |
633 | <script type="text/javascript">$(window).load(function(){$("p").remove(":contains('Source:')");});</script></head> | |
634 | <body> | |
635 | <div id="bite"> | |
636 | <div class="top"> | |
637 | <div class="nav"> | |
638 | <div align="center"><br><br> | |
639 | {block:ifnotshowheader} | |
640 | <span class="h3"><a href="/">{Title}</a></span>{/block:ifnotshowheader}{block:ifshowheader}<img src="{image:Header}" width="{text:Header Size}px;" target="_blank" style=""><br><br>{/block:ifshowheader}</div></span> | |
641 | ||
642 | {block:ifDropDownDescription} | |
643 | <div class="death"> | |
644 | {/block:ifDropDownDescription} | |
645 | <span class="h7">{block:ifhomelink}<a href="/">Home</a> · {block:ifhomelink}{block:ifmessagelink}<a href="/ask">Message</a> · {block:ifmessagelink}{block:ifarchivelink}<a href="/archive">Archive</a> · {/block:ifarchivelink}{block:ifsubmitlink}<a href="/submit">Submit</a> · {block:ifsubmitlink}{block:iffirstcustomlink}<a href="{text:first custom link url}">{text:first custom link title}</a> · {/block:iffirstcustomlink}{block:ifsecondcustomlink}<a href="{text:second custom link url}">{text:second custom link title}</a> · {/block:ifsecondcustomlink}{block:ifthirdcustomlink}<a href="{text:third custom link url}">{text:third custom link title}</a> · {/block:ifthirdcustomlink}{block:iffourthcustomlink}<a href="{text:fourth custom link url}">{text:fourth custom link title}</a> · {/block:iffourthcustomlink}{block:iffifthcustomlink}<a href="{text:fifth custom link url}">{text:fifth custom link title}</a> · {/block:iffifthcustomlink}{block:ifsixthcustomlink}<a href="{text:sixth custom link url}">{text:sixth custom link title}</a> · {/block:ifsixthcustomlink}<a href="http://lsaac.tumblr.com">Theme</a></span> | |
646 | ||
647 | <div align="center"><p><p><div id="h4"><br>{Description}<br><br></div> | |
648 | ||
649 | ||
650 | </div></div></div></div></div> | |
651 | ||
652 | ||
653 | <div id="content"> | |
654 | <div class="posts"> | |
655 | {block:Posts} | |
656 | <div class="entry"> | |
657 | ||
658 | {block:Text} | |
659 | {block:IndexPage} | |
660 | {block:Title}<span class="h1">{Title}</span>{/block:Title} | |
661 | {Body}{/block:IndexPage} | |
662 | {block:IndexPage}<div class="permalink"><a href="{Permalink}">{NoteCountWithLabel}</a> / <a href="{ReblogURL}" target="_blank">Reblog</a><div>{/block:IndexPage}</span></div></div> | |
663 | {block:PermalinkPage}<div style="margin-left:220px;"</div>{/block:PermalinkPage} | |
664 | ||
665 | {block:PermalinkPage}<div id="text">{block:Title}<span class="h1">{Title}</span>{/block:Title} | |
666 | {Body}</div>{/block:PermalinkPage} | |
667 | {/block:Text} | |
668 | ||
669 | {block:Photo} | |
670 | {block:IndexPage} | |
671 | <div class="perma"> | |
672 | <div class="likep"> | |
673 | <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a> | |
674 | </div> | |
675 | <div class="rep"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="24"/></a> | |
676 | </div> | |
677 | {block:ifshownotecountonhover} | |
678 | <div class="not"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div> {/block:ifshownotecountonhover} | |
679 | </div> | |
680 | <a href="{Permalink}"><img src="{PhotoURL-250}" alt="{PhotoAlt}" width="250"/></a> | |
681 | {/block:IndexPage} | |
682 | {block:PermalinkPage} | |
683 | {LinkOpenTag} | |
684 | <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="840"/></a> | |
685 | {LinkCloseTag} | |
686 | {/block:permalinkpage} | |
687 | {/block:Photo} | |
688 | ||
689 | {block:Photoset} | |
690 | {block:IndexPage}{Photoset-250}{/block:IndexPage} | |
691 | {block:IndexPage}<div class="permalink"><a href="{Permalink}">{NoteCountWithLabel}</a> / <a href="{ReblogURL}" target="_blank">Reblog</a><div>{/block:IndexPage}</span></div></div>{block:PermalinkPage}<div style="margin-left:230px;"</div>{/block:PermalinkPage}{block:PermalinkPage}<div id="photoset">{Photoset-500}</div>{/block:PermalinkPage} | |
692 | {/block:Photoset} | |
693 | ||
694 | {block:Quote} | |
695 | {block:IndexPage}<div class="quote"><b><i>"</i></b>{Quote}<b><i>"</i></b> </div> {block:Source}<small>{Source}</small>{/block:Source}{/block:IndexPage}{block:IndexPage}<div class="permalink"><a href="{Permalink}">{NoteCountWithLabel}</a> / <a href="{ReblogURL}" target="_blank">Reblog</a><div>{/block:IndexPage}</span></div></div> | |
696 | {block:PermalinkPage}<div style="margin-left:230px;"</div>{/block:PermalinkPage}{block:PermalinkPage}<div id="quote"><b><i>"</i></b>{Quote}<b><i>"</i></b> - {block:Source}<small>{Source}</small>{/block:Source}</div>{/block:PermalinkPage} | |
697 | {/block:Quote} | |
698 | ||
699 | {block:Link} | |
700 | {block:IndexPage}<a href="{URL}"{Target}><span class="h2">+{Name}</span></a>{block:Description}<small>{Description}</small>{/block:Description}{/block:IndexPage}{block:IndexPage}<div class="permalink"><a href="{Permalink}">{NoteCountWithLabel}</a> / <a href="{ReblogURL}" target="_blank">Reblog</a><div>{/block:IndexPage}</span></div></div> | |
701 | {block:PermalinkPage}<div style="margin-left:230px;"</div>{/block:PermalinkPage}{block:PermalinkPage} | |
702 | <div id="link"><a href="{URL}"{Target}><span class="h2"> →{Name}</span></a> | |
703 | {block:Description}<small>{Description}</small>{/block:Description}</div>{/block:PermalinkPage} | |
704 | {/block:Link} | |
705 | ||
706 | {block:Video} | |
707 | <div class="video"> | |
708 | {block:IndexPage}{Video-250}{/block:IndexPage} | |
709 | </div>{block:IndexPage}<div class="videocap"></a></div><div class="permalink"><a href="{Permalink}">{NoteCountWithLabel}</a> / <a href="{ReblogURL}" target="_blank">Reblog</a><div>{/block:IndexPage}</span></div></div>{/block:IndexPage}{block:PermalinkPage}<div style="margin-left:230px;"</div> | |
710 | {/block:PermalinkPage}{block:PermalinkPage}<div id="vid">{Video-500}</div>{/block:PermalinkPage} | |
711 | {/block:Video} | |
712 | ||
713 | {block:Chat} | |
714 | {block:IndexPage}{block:Title}<div class="ptitle">{Title}</div> | |
715 | {/block:Title}{block:Lines}{block:Label}<b>{Label}</b> {/block:Label}{Line}<br>{/block:Lines}{/block:IndexPage}{block:IndexPage}<div class="permalink"><a href="{Permalink}">{NoteCount}</a> / <a href="{ReblogURL}" target="_blank">Reblog</a><div>{/block:IndexPage}</span></div></div>{block:PermalinkPage}<div style="margin-left:230px;"</div>{/block:PermalinkPage}{block:PermalinkPage}<div id="chat">{block:Title}<div class="ptitle">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b> {/block:Label}{Line}<br>{/block:Lines}</div>{/block:PermalinkPage} | |
716 | {/block:Chat} | |
717 | ||
718 | {block:Audio} | |
719 | <a href="{Permalink}"> | |
720 | {block:AlbumArt}<div class="albumart"><img src="{AlbumArtURL}"></a></div>{/block:AlbumArt}</a><div class="audio">{AudioPlayerGrey}</div> | |
721 | {block:PermalinkPage}{block:Caption}<div class="audiocap">{Caption}</div>{/block:Caption}{/block:PermalinkPage} | |
722 | {/block:Audio} | |
723 | ||
724 | {block:Answer} | |
725 | {block:IndexPage} | |
726 | <div class="asker">{Asker} said:</a><div class="question"><br>{Question}</div></div><div class="answer"><i>{Answer}</i></div>{/block:IndexPage} | |
727 | {block:IndexPage}<div class="permalink"><a href="{Permalink}">{NoteCountWithLabel}</a><div></span></div></div>{/block:IndexPage}{block:PermalinkPage}<div style="margin-left:10px;"</div>{/block:PermalinkPage}{block:PermalinkPage}<div id="ans"><div class="asker">{Asker} said:</a><div class="question"><br>{Question}</div></div><div class="answer"><i>{Answer}</i></div></div>{/block:PermalinkPage} | |
728 | {/block:Answer} | |
729 | ||
730 | {block:PermalinkPage}<div class="notes"> | |
731 | {block:Caption}{Caption}{/block:Caption} | |
732 | Posted on {Month} {DayofMonth}{DayofMonthSuffix} at {12Hour}:{Minutes} {CapitalAMPM} | |
733 | <br>Has a total of: {NoteCount} Notes | |
734 | {block:PostNotes}<br><br><div style="border-width:1px; border-style:solid; border-color:{color:borders}; text-align:left; margin-bottom:30px; max-height: 200px; width:880px; overflow: auto; overflow-x: hidden;">{PostNotes}</div>{/block:PostNotes}</div> | |
735 | {/block:PermalinkPage} | |
736 | </div>{/block:Posts}</div></div> | |
737 | ||
738 | {block:IndexPage} | |
739 | <div class="column navigation" id="navigation"> | |
740 | {block:Pagination} | |
741 | {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage} | |
742 | {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination} | |
743 | </div> | |
744 | {/block:IndexPage} | |
745 | ||
746 | <div style="position:fixed; bottom:5px; right:1px; font-size:36px; opacity:0.6; background-color:{color:Content}; border-radius:18px; padding:9px; font-family:Times New Roman;"><a href="http://lsaac.tumblr.com">+</a></div><div style="right: 3px; top: 26px; opacity:0.6; position:absolute; | |
747 | z-index:9999999999999999999999;"><a href="http://lsaac.tumblr.com"><img src="http://static.tumblr.com/ykziu7r/dGgm6nq81/install_theme.png"/></a></div></div></div></div></div></div> | |
748 | ||
749 | <script type="text/javascript" src="http://static.tumblr.com/ykziu7r/gJrmd11kv/liked.js"></script> | |
750 | <iframe id="likeiframe" style="width: 1px; height: 1px;"></iframe></body></html></body> |