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