SHOW:
|
|
- or go back to the newest paste.
1 | <!------------------------------------------------------------------------ | |
2 | ||
3 | ||
4 | /// aleuha theme by ally | |
5 | ||
6 | © 2014 stahrfruits.tumblr.com | |
7 | ||
8 | ||
9 | --------------------------------------------------------------------------> | |
10 | ||
11 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
12 | "http://www.w3.org/TR/html4/loose.dtd"> | |
13 | ||
14 | <head> | |
15 | ||
16 | <link href='http://fonts.googleapis.com/css?family=Raleway:300' rel='stylesheet' type='text/css'> | |
17 | ||
18 | <meta name="color:Background" content="#FFFFFF"/> | |
19 | <meta name="color:Text" content="#000000"/> | |
20 | <meta name="color:Titles" content="#000000"/> | |
21 | <meta name="color:Links" content="#636363"/> | |
22 | <meta name="color:Hover" content="#FFFFFF"/> | |
23 | <meta name="color:Scrollbar" content="#363636"/> | |
24 | <meta name="color:Chat Background" content="#F5F5F5"/> | |
25 | ||
26 | <meta name="image:Header" content=""/> | |
27 | ||
28 | <meta name="if:Fade Images" content="1" /> | |
29 | <meta name="if:rounded posts" content="" /> | |
30 | <meta name="if:Endless Scrolling" content="1"/> | |
31 | <meta name="if:customlink1" content="1"/> | |
32 | <meta name="if:customlink2" content="1"/> | |
33 | <meta name="if:customlink3" content="1"/> | |
34 | ||
35 | ||
36 | <meta name="text:asklink" content="/ask"/> | |
37 | <meta name="text:ask link title" content="contact"/> | |
38 | ||
39 | <meta name="text:customlink1" content="/"/> | |
40 | <meta name="text:customlink2" content="/"/> | |
41 | <meta name="text:customlink3" content="/"/> | |
42 | <meta name="text:customlink1 title" content="link"/> | |
43 | <meta name="text:customlink2 title" content="link"/> | |
44 | <meta name="text:customlink3 title" content="link"/> | |
45 | ||
46 | ||
47 | ||
48 | <meta name="text:Scrolling Tab Bar" content="" /> | |
49 | <meta name="text:reblog" content="reblog" /> | |
50 | ||
51 | ||
52 | ||
53 | ||
54 | ||
55 | <script type="text/javascript" | |
56 | src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script> | |
57 | ||
58 | <script type="text/javascript"> | |
59 | var rev = "fwd"; | |
60 | function titlebar(val) | |
61 | { | |
62 | var msg = "{text:Scrolling Tab Bar}"; | |
63 | var res = " "; | |
64 | var speed = 100; | |
65 | var pos = val; | |
66 | msg = "{text:Scrolling Tab Bar}"; | |
67 | var le = msg.length; | |
68 | if(rev == "fwd"){ | |
69 | if(pos < le){ | |
70 | pos = pos+1; | |
71 | scroll = msg.substr(0,pos); | |
72 | document.title = scroll; | |
73 | timer = window.setTimeout("titlebar("+pos+")",speed); | |
74 | } | |
75 | else{ | |
76 | rev = "bwd"; | |
77 | timer = window.setTimeout("titlebar("+pos+")",speed); | |
78 | } | |
79 | } | |
80 | else{ | |
81 | if(pos > 0){ | |
82 | pos = pos-1; | |
83 | var ale = le-pos; | |
84 | scrol = msg.substr(ale,le); | |
85 | document.title = scrol; | |
86 | timer = window.setTimeout("titlebar("+pos+")",speed); | |
87 | } | |
88 | else{ | |
89 | rev = "fwd"; | |
90 | timer = window.setTimeout("titlebar("+pos+")",speed); | |
91 | } | |
92 | } | |
93 | } | |
94 | titlebar(0); | |
95 | </script> | |
96 | ||
97 | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> | |
98 | ||
99 | <script type="text/javascript" src="scrolltopcontrol.js"> | |
100 | </script> | |
101 | ||
102 | <script type="text/javascript"> | |
103 | var scrolltotop={ | |
104 | //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control | |
105 | //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top). | |
106 | setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]}, | |
107 | controlHTML: '<img src="http://img189.imageshack.us/img189/3782/b2t.png"> l, //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol" | |
108 | controlattrs: {offsetx:10, offsety:10}, //offset of control relative to right/ bottom of window corner | |
109 | anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links | |
110 | ||
111 | state: {isvisible:false, shouldvisible:false}, | |
112 | ||
113 | scrollup:function(){ | |
114 | if (!this.cssfixedsupport) //if control is positioned using JavaScript | |
115 | this.$control.css({opacity:0}) //hide control immediately after clicking it | |
116 | var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto) | |
117 | if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists | |
118 | dest=jQuery('#'+dest).offset().top | |
119 | else | |
120 | dest=0 | |
121 | this.$body.animate({scrollTop: dest}, this.setting.scrollduration); | |
122 | }, | |
123 | ||
124 | keepfixed:function(){ | |
125 | var $window=jQuery(window) | |
126 | var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx | |
127 | var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety | |
128 | this.$control.css({left:controlx+'px', top:controly+'px'}) | |
129 | }, | |
130 | ||
131 | togglecontrol:function(){ | |
132 | var scrolltop=jQuery(window).scrollTop() | |
133 | if (!this.cssfixedsupport) | |
134 | this.keepfixed() | |
135 | this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false | |
136 | if (this.state.shouldvisible && !this.state.isvisible){ | |
137 | this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0]) | |
138 | this.state.isvisible=true | |
139 | } | |
140 | else if (this.state.shouldvisible==false && this.state.isvisible){ | |
141 | this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1]) | |
142 | this.state.isvisible=false | |
143 | } | |
144 | }, | |
145 | ||
146 | init:function(){ | |
147 | jQuery(document).ready(function($){ | |
148 | var mainobj=scrolltotop | |
149 | var iebrws=document.all | |
150 | mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode | |
151 | mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body') | |
152 | mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>') | |
153 | .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'}) | |
154 | .attr({title:'Scroll to Top'}) | |
155 | .click(function(){mainobj.scrollup(); return false}) | |
156 | .appendTo('body') | |
157 | if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text | |
158 | mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text | |
159 | mainobj.togglecontrol() | |
160 | $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){ | |
161 | mainobj.scrollup() | |
162 | return false | |
163 | }) | |
164 | $(window).bind('scroll resize', function(e){ | |
165 | mainobj.togglecontrol() | |
166 | }) | |
167 | }) | |
168 | } | |
169 | } | |
170 | ||
171 | scrolltotop.init() | |
172 | ||
173 | </script> | |
174 | ||
175 | <title>{Title}</title> | |
176 | ||
177 | ||
178 | ||
179 | <style type="text/css"> | |
180 | ||
181 | /*General Layout */ | |
182 | ||
183 | body {margin:0px; background-color: {color:Background}; {block:IfGrainedBackgroundImage} background-image:url(‘{image:Background}’); background-attachment: fixed; background-repeat: repeat;{/block:IfGrainedBackgroundImage}font-family:raleway; font-size:11px; line-height:16px;text-align: left; color:{color:Text}; letter-spacing:0px;} | |
184 | ||
185 | div#wrap{{block:IndexPage}width:1300px;{block:IndexPage}{block:PermalinkPage}width:500px; margin-left:auto;{/block:PermalinkPage}margin:auto;} | |
186 | ||
187 | div#content{{block:IndexPage}width:1300px;{block:IndexPage} margin-left:auto; margin-center:auto; margin-top:-20px; padding-top:0px;} | |
188 | ||
189 | .entry{{block:IndexPage}width:185px; float:left; padding:5px; padding-bottom:0px; margin:10px;{/block:IndexPage} | |
190 | {block:PermalinkPage}width:500px; margin-left:auto; margin-right:auto; {/block:PermalinkPage} text-align:left;} | |
191 | ||
192 | .entry img{{block:IndexPage} max-width:200px; -webkit-transition: 0.3s ease-in; {/block:IndexPage}{block:PermalinkPage}width:500px; margin-left:auto; margin-right:auto;{/block:PermalinkPage}} | |
193 | ||
194 | .entry img:hover{{block:IndexPage} margin-top:5px;-webkit-transition: 0.3s ease-in;{/block:IndexPage}} | |
195 | ||
196 | {block:ifroundedposts} | |
197 | .entry img{ | |
198 | -khtml-border-radius: 15px; | |
199 | -moz-border-radius: 15px; | |
200 | -webkit-border-radius: 15px; | |
201 | border-radius: 15px; | |
202 | } | |
203 | {/block:ifroundedposts} | |
204 | ||
205 | .header{padding:0px; margin-left:auto; margin-right:auto; margin-top:20px; {block:IndexPage}width:520px;{block:IndexPage} {block:PermalinkPage}width:500px;{/block:PermalinkPage}} | |
206 | ||
207 | /*Contents Info */ | |
208 | ||
209 | .post_title{ font-family:raleway; text-transform:none; letter-spacing:4px; font-size:18px; color:{color:Titles}; line-height:20px;} | |
210 | ||
211 | .links{font-family: raleway; color:{color:Links}; margin-bottom: 4px; text-transform:lowercase; font-size: 12px; line-height: 9px; letter-spacing:2px; margin: 5px; padding: 4px; text-align:right;} | |
212 | ||
213 | .links:hover{color:{color:Hover};} | |
214 | ||
215 | a:link, a:active, a:visited{color: {color:Links}; text-decoration: none; -webkit-transition: color 0.5s ease-out;-moz-transition: color 0.5s ease-out;transition: color 0.5s ease-out;} | |
216 | a:hover {color:{color:Hover};text-decoration: none;} | |
217 | ||
218 | div#page{position:fixed; right:5px; bottom:5px; font-family:raleway; text-transform:none; text-align:right; background-color:{color:Chat Background}; | |
219 | {block:IfEndlessScrolling}display:none;{/block:IfEndlessScrolling} padding:5px;} | |
220 | ||
221 | .quot{margin-left:0px; margin-top:-8px; font-family:raleway; text-transform:none; font-size:12px; color:{color:Post title}; line-height:14px; letter-spacing:2px;} | |
222 | ||
223 | .quote{position:relative; top:5px; font-size:40px; opacity:0.2; filter: alpha(opacity = 20);} | |
224 | ||
225 | .source{ font-size:12px; text-align:right;} | |
226 | ||
227 | div#chat li { padding: 4px; background-color:{color:Chat Background}; margin-top: 2px;} | |
228 | ||
229 | div#chat ul{ {block:IndexPage} width:250px; {/block:IndexPage} | |
230 | {block:PermalinkPage} width:500px; margin-left:80px;{/block:PermalinkPage} list-style: none; padding: 0px; margin-top:5px; margin-bottom:10px; text-align: justify; } | |
231 | ||
232 | .audio {{block:IfWhiteAudioPlayer}background-color: #fff;{/block:IfWhiteAudioPlayer} {block:IfNotWhiteAudioPlayer} background-color: #000; {/block:IfNotWhiteAudioPlayer} {block:PermalinkPage} width:500px; {/block:PermalinkPage}} | |
233 | ||
234 | .asker{padding:5px; line-height:16px; font-family:raleway; text-transform:uppercase; letter-spacing:2px; background-color: {color:Chat Background}; } | |
235 | ||
236 | .qs { text-align:right;} | |
237 | ||
238 | .notespage { width:500px; opacity: 1; z-index: 10000; margin-top:0px; margin-left:0px; margin-right:auto; text-align:right; } | |
239 | ||
240 | .postnotes { margin-top:0; margin-left:20px; margin-right:auto; margin-bottom:0px; width:500px; | |
241 | text-align:left max-height:300px; overflow-x:auto; } | |
242 | ||
243 | {block:ifFadeImages} img {opacity: 0.85; -webkit-transition-duration: 0.8s; } | |
244 | img:hover { opacity: 1; -webkit-transition-duration: 0.8s; } {/block:ifFadeImages} | |
245 | ||
246 | .info{ background-color:{color:Chat Background}; display:block; padding:5px;} | |
247 | ||
248 | .triangle{font-family:Arial; font-size:16px; color:{color:Chat Background}; position:absolute; | |
249 | margin:-20px 0px 0px 7px;} | |
250 | ||
251 | .blogtitle{font-size:1px; {block:IndexPage}letter-spacing:12px;{block:IndexPage} {block:PermalinkPage}letter-spacing:10px;{/block:PermalinkPage} padding-bottom:15px; line-height:22px; color:{color:blogtitle}; font-family:ralewa; text-transform:uppercase; cursor:help; text-align:center;} | |
252 | ||
253 | /*Permalink Inyfo */ | |
254 | ||
255 | {block:IndexPage} | |
256 | ||
257 | .entry .permalink {margin-top: 4px; border-top: 1px dotted {color:text}; text-align: center; font-size: 10px; text-transform: uppercase; padding-top: 3px; overflow:hidden; -webkit-transition: opacity 0.7s linear; opacity: 0.0; -webkit-transition: all 0.4s linear; -moz-transition: all 0.4s linear;transition: all 0.4s linear;} | |
258 | ||
259 | .entry:hover .permalink {overflow:visible; -webkit-transition: opacity 0.7s linear; opacity: .5; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; transition: all 0.2s linear;} | |
260 | ||
261 | .permalink {display:block; position: relative; text-align: right; text-transform:uppercase; font-size:9px; margin-top:-11px; font-family:'raleway', sans-serif; opacity:0.8; filter: alpha(opacity = 80); -webkit-transition: 0.3s ease-in; } | |
262 | ||
263 | .entry:hover .permalink{opacity: 1; filter: alpha(opacity = 100); -webkit-transition: 0.3s ease-in; } | |
264 | ||
265 | .photo_perma{display:block; height:15px; text-align:left; text-transform:uppercase; padding-left: 10px; padding-right: 10px; padding-top:10px; padding-bottom:10px; background-color:{color:background}; position: absolute; margin-top:-48px; margin-left:8px; opacity:0; filter: alpha(opacity = 0); -webkit-transition: 0.3s ease-in;} | |
266 | ||
267 | .photo_perma a{color:{color:text};} | |
268 | ||
269 | .entry:hover .photo_perma{ {block:IfCaption} margin-top:25px; {/block:IfCaption} opacity:0.75; | |
270 | filter: alpha(opacity = 75); -webkit-transition: 0.3s ease-in; } | |
271 | ||
272 | {/block:IndexPage} | |
273 | ||
274 | /*Other Info */ | |
275 | ||
276 | iframe#tumblr_controls{position:fixed; top:1px; margin: 0 0 0 0; right: 6px;} | |
277 | ||
278 | {block:ifFadeImages} img {opacity: 0.85; -webkit-transition-duration: 0.8s; } | |
279 | img:hover { opacity: 1; -webkit-transition-duration: 0.8s; } {/block:ifFadeImages} | |
280 | ||
281 | ::-webkit-scrollbar-thumb:vertical {background-color:{color:scrollbar}; height:5px;} | |
282 | ::-webkit-scrollbar-thumb:horizontal { background-color:{color:scrollbar}; height:5px;} | |
283 | ::-webkit-scrollbar {height:3px; width:3px; background-color:{color:background};} | |
284 | ||
285 | {CustomCSS} | |
286 | ||
287 | #links { | |
288 | ||
289 | text-align: center; | |
290 | font-size: 15px; | |
291 | color: {color:header links}; | |
292 | text-transform: uppercase; | |
293 | ||
294 | } | |
295 | ||
296 | #desc { | |
297 | ||
298 | text-align:center; | |
299 | width:500px; | |
300 | height:auto; | |
301 | ||
302 | } | |
303 | ||
304 | #creds { | |
305 | text-align: left; | |
306 | font-size: 11px; | |
307 | position:fixed; | |
308 | left:10px; | |
309 | bottom:-65px; | |
310 | -webkit-transition: all .5s ease-in-out; | |
311 | -moz-transition: all .5s ease-in-out; | |
312 | -o-transition: all .5s ease-in-out; | |
313 | z-index:999; | |
314 | } | |
315 | ||
316 | #creds:hover {bottom:0px;} | |
317 | ||
318 | #cred { | |
319 | border-right-style:solid; | |
320 | border-bottom-style:solid; | |
321 | border-left-style:solid; | |
322 | border-width:0px; | |
323 | border-color:#000; | |
324 | padding: 5px 0 5px 0; | |
325 | background: #ffffff; | |
326 | width:150px; | |
327 | height:50px; | |
328 | border-top-right-radius: 0px; | |
329 | -moz-border-radius-topright: 0px; | |
330 | -webkit-border-top-right-radius: 0px; | |
331 | z-index: 9999; | |
332 | } | |
333 | ||
334 | #credtab { | |
335 | border-top-style:none; | |
336 | border-right-style:solid; | |
337 | border-bottom-style:solid; | |
338 | border-left-style:solid; | |
339 | border-width:0px; | |
340 | border-color:#000; | |
341 | text-align: center; | |
342 | ||
343 | height:13px; | |
344 | padding: 2px 0 8px 0; | |
345 | background:#ffffff; | |
346 | border-top-left-radius: 0px; | |
347 | -moz-border-radius-topleft: 0px; | |
348 | -webkit-border-top-left-radius: 0px; | |
349 | border-top-right-radius: 0px; | |
350 | -moz-border-radius-topright: 0px; | |
351 | -webkit-border-top-right-radius: 0px; | |
352 | width: 41px; | |
353 | } | |
354 | .nine{ | |
355 | top:25px; | |
356 | right:5px; | |
357 | font-size:11px; | |
358 | z-index:4; | |
359 | position:fixed; | |
360 | font-family: "raleway"; | |
361 | padding:0px; | |
362 | -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out; | |
363 | } | |
364 | .nine:hover{ | |
365 | bottom:15px; | |
366 | font-family: "raleway"; | |
367 | -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out; | |
368 | } | |
369 | .nine .linkk{opacity:0; | |
370 | bottom:5px; | |
371 | right:7px; | |
372 | font-family: "raleway"; | |
373 | font-size:11px; | |
374 | z-index:4; | |
375 | position:fixed; | |
376 | padding:0px; | |
377 | -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out; | |
378 | } | |
379 | .nine:hover .linkk{ | |
380 | opacity:0.9; | |
381 | -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out; | |
382 | } | |
383 | ||
384 | ||
385 | </style> | |
386 | ||
387 | {block:IndexPage} | |
388 | ||
389 | <script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script> | |
390 | <script type="text/javascript" src="http://static.tumblr.com/imovwvl/rSGl20lfv/masonry.js"> | |
391 | </script> | |
392 | {block:IfEndlessScrolling}<script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>{/block:IfEndlessScrolling} | |
393 | <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script> | |
394 | <script type="text/javascript"> | |
395 | ||
396 | $(window).load(function () { | |
397 | $('#content').masonry(), | |
398 | $('.masonryWrap').infinitescroll({ | |
399 | navSelector : "div#navigation", | |
400 | // selector for the paged navigation (it will be hidden) | |
401 | nextSelector : "div#navigation a#nextPage", | |
402 | // selector for the NEXT link (to page 2) | |
403 | itemSelector : ".entry", | |
404 | // selector for all items you'll retrieve | |
405 | bufferPx : 10000, | |
406 | extraScrollPx: 11000, | |
407 | loadingImg : "http://b.imagehost.org/0548/Untitled-2.png", | |
408 | loadingText : "<em></em>", | |
409 | }, | |
410 | // call masonry as a callback. | |
411 | function() { $('#content').masonry({ appendedContent: $(this) }); } | |
412 | ); | |
413 | }); | |
414 | </script> | |
415 | <script type="text/javascript"> | |
416 | $(window).load(function(){ | |
417 | $("p").remove(":contains('Source:')"); | |
418 | }); | |
419 | </script> | |
420 | {/block:IndexPage} | |
421 | ||
422 | </head> | |
423 | <body> | |
424 | ||
425 | ||
426 | </center></div> | |
427 | </div> | |
428 | ||
429 | ||
430 | ||
431 | {block:Pagination}<div id="page">{block:PreviousPage}<a href="{PreviousPage}">prev ious page \</a> {/block:PreviousPage}</div> <div id="page">{block:nextPage}<a href="{nextPage}">/ next page</a>{/block:nextPage}</div>{/block:Pagination} <div class="navigation">{block:Pagination}{/block:Pagination}</div> | |
432 | ||
433 | ||
434 | {block:IfSidebarfadeonscrolldown} | |
435 | <script> | |
436 | var visible = 0; | |
437 | $(window).scroll(function() { | |
438 | if($(window).scrollTop()>="60") { | |
439 | if(visible == 0){ | |
440 | $("#sidebar").stop().fadeTo("medium", 1); | |
441 | visible = 1; | |
442 | } | |
443 | } | |
444 | else { | |
445 | if(visible == 1){ | |
446 | $("#sidebar").stop().fadeTo("medium", 0.0); | |
447 | visible = 0; | |
448 | } | |
449 | } | |
450 | }); | |
451 | </script> | |
452 | {/block:IfSidebarfadeonscrolldown} | |
453 | ||
454 | <div id="wrap"> | |
455 | ||
456 | <div class="header"> | |
457 | ||
458 | {block:IfHeaderImage}<img style="{block:IndexPage}width:520px;{block:IndexPage} {block:PermalinkPage}width:500px;{/block:PermalinkPage} overflow:hidden; float:left; padding-bottom:15px;" src="{image:header}">{/block:IfHeaderImage} | |
459 | ||
460 | <br> | |
461 | ||
462 | <div id="links"> | |
463 | ||
464 | <a href="/">refresh</a> | |
465 | <a href="{text:asklink}">{text:ask link title}</a> | |
466 | <a href="/archive">archive</a> | |
467 | ||
468 | {block:ifcustomlink1} | |
469 | <a href="{text:customlink1}">{text:customlink1 title}</a> {/block:ifcustomlink1} | |
470 | {block:ifcustomlink2} | |
471 | <a href="{text:customlink2}">{text:customlink2 title}</a> {/block:ifcustomlink2} | |
472 | {block:ifcustomlink3} | |
473 | <a href="{text:customlink3}">{text:customlink3 title}</a> {/block:ifcustomlink3} | |
474 | ||
475 | ||
476 | ||
477 | <!---Please don't remove. I worked really hard on this theme :) --> | |
478 | <a href="http://stahrfruits.tumblr.com">credit</a> | |
479 | ||
480 | </div> | |
481 | ||
482 | ||
483 | ||
484 | ||
485 | <p align="center"> | |
486 | ||
487 | <div id="desc">{description}</div> | |
488 | ||
489 | ||
490 | </p> | |
491 | ||
492 | <div style="text-align:right;"> | |
493 | ||
494 | </div></div> | |
495 | ||
496 | <div style="padding-top:15px;"><div id="content"> | |
497 | ||
498 | {block:Posts} | |
499 | ||
500 | {block:Text}<div class="entry">{block:Title}<span class="post_title">{Title}</span>{/block:Title} | |
501 | {Body}{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Text} | |
502 | ||
503 | {block:Photo}<div class="entry">{block:IndexPage}<a href="{Permalink}">{/block:IndexPage}{block:PermalinkPage}{LinkOpenTag}{/block:PermalinkPage}<img src="{block:IndexPage}{PhotoURL-HighRes}{/block:IndexPage}{block:PermalinkPage}{PhotoURL-HighRes}{/block:PermalinkPage}" alt="{PhotoAlt}" {block:IndexPage}width="250"{/block:IndexPage}{block:PermalinkPage}width="520"{/block:PermalinkPage}/>{block:IndexPage}</a>{/block:IndexPage}{block:PermalinkPage}{LinkCloseTag}{/block:PermalinkPage} {block:IndexPage}<span class="photo_perma"><a href="{Permalink}"> {NoteCountWithLabel}</a> • <a href="{ReblogURL}" target="_blank">{text:reblog} </a></a></a></span>{/block:IndexPage}</div>{/block:Photo} | |
504 | ||
505 | {block:Photoset}<div class="entry">{block:IndexPage}{Photoset-250}{/block:IndexPage}{block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}{block:IndexPage}{block:IfCaption}{block:Caption}{Caption}{/block:Caption}{/block:IfCaption}{/block:IndexPage}<br>{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel} - <a href="{ReblogURL}" target="_blank">{text:reblog} </a></a></span>{/block:IndexPage}</div>{/block:Photoset} | |
506 | ||
507 | {block:Quote}<div class="entry"><span class="quote">❝</span><div class="quot">{Quote}</div>{block:Source}<div class="source"><p>— {Source}</p></div>{/block:Source} | |
508 | {block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Quote} | |
509 | {block:Chat}<div class="entry">{block:Title}<span class="post_title">{Title}</span>{/block:Title} | |
510 | <div id="chat"><ul>{block:Lines}<li>{block:Label}<b>{Label}</b>{/block:Label}{Line}</li>{/block:Lines}</ul></div>{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Chat} | |
511 | ||
512 | {block:Link}<div class="entry"><span class="post_title"><a href="{URL}">{Name} </span></a>{block:Description}{Description}{/block:Description}{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Link} | |
513 | ||
514 | {block:Audio}<div class="entry"><div class="audio"> {block:IfWhiteAudioPlayer}{AudioPlayerWhite}{/block:IfWhiteAudioPlayer}{block:IfNotWhiteAudioPlayer}{AudioPlayerBlack}{/block:IfNotWhiteAudioPlayer}</div> {block:AlbumArt}<img src="{AlbumArtURL}" style="width:50px; height:50px; float:left; padding-right:10px; padding-top:10px; padding-left:5px; padding-bottom:10px;">{/block:AlbumArt}{block:Caption}{Caption}{/block:Caption} <br>{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Audio} | |
515 | ||
516 | {block:Video}<div class="entry">{block:IndexPage}{Video-250}{/block:IndexPage}{block:PermalinkPage}{Video-500}{/block:PermalinkPage}{block:Caption}{Caption}{/block:Caption} | |
517 | {block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Video} | |
518 | ||
519 | {block:Answer}<div class="entry"><div class="asker">{Question}</div> <br> <div class="triangle">▼</div> <div class="qs">asked by {Asker}</div><br>{Answer}<p>{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Answer} | |
520 | ||
521 | {block:PermalinkPage} <div class="notespage"> {block:NoteCount}{NoteCountWithLabel} / {/block:NoteCount} {block:Date}{TimeAgo}{/block:Date} {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom} {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom} {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div> | |
522 | <div class="postnotes">{block:PostNotes}{PostNotes}{/block:PostNotes}</div> {/block:PermalinkPage} | |
523 | ||
524 | {/block:posts} | |
525 | ||
526 | {block:IndexPage} | |
527 | <div class="column navigation" id="navigation"> | |
528 | {block:Pagination} | |
529 | {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage} | |
530 | {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination} | |
531 | </div> | |
532 | {/block:IndexPage} | |
533 | ||
534 | </div></div></div></body> | |
535 | <!-- | |
536 | Do not remove credit for this edit or you WILL be reported. | |
537 | --> | |
538 | <div class="nine"><a href="http://stahrfruits.tumblr.com">theme</a><br><div class="linkk"><a href="http://stahrfruits.tumblr.com">stahrfruits</a></div> | |
539 | ||
540 | ||
541 | </html> |